From: <sag...@us...> - 2011-06-03 20:32:02
|
Revision: 891 http://modplug.svn.sourceforge.net/modplug/?rev=891&view=rev Author: saga-games Date: 2011-06-03 20:31:55 +0000 (Fri, 03 Jun 2011) Log Message: ----------- [Fix] Pattern Editor: When changing the number of channels through the song properties, the channel headers in the pattern display were not updated properly (http://bugs.openmpt.org/view.php?id=140) [Mod] OpenMPT: Version is now 1.19.02.04 Modified Paths: -------------- trunk/OpenMPT/mptrack/Moddoc.cpp trunk/OpenMPT/mptrack/version.h Modified: trunk/OpenMPT/mptrack/Moddoc.cpp =================================================================== --- trunk/OpenMPT/mptrack/Moddoc.cpp 2011-06-01 22:23:05 UTC (rev 890) +++ trunk/OpenMPT/mptrack/Moddoc.cpp 2011-06-03 20:31:55 UTC (rev 891) @@ -3761,8 +3761,8 @@ if(ChangeNumChannels(nNewChannels, showCancelInRemoveDlg)) bShowLog = true; } - // Force update of pattern highlights - UpdateAllViews(NULL, HINT_PATTERNDATA); + // Force update of pattern highlights / num channels + UpdateAllViews(NULL, HINT_PATTERNDATA | HINT_MODCHANNELS); SetModified(); Modified: trunk/OpenMPT/mptrack/version.h =================================================================== --- trunk/OpenMPT/mptrack/version.h 2011-06-01 22:23:05 UTC (rev 890) +++ trunk/OpenMPT/mptrack/version.h 2011-06-03 20:31:55 UTC (rev 891) @@ -15,7 +15,7 @@ #define VER_MAJORMAJOR 1 #define VER_MAJOR 19 #define VER_MINOR 02 -#define VER_MINORMINOR 03 +#define VER_MINORMINOR 04 //Creates version number from version parts that appears in version string. //For example MAKE_VERSION_NUMERIC(1,17,02,28) gives version number of This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |