From: <sag...@us...> - 2011-07-01 20:00:45
|
Revision: 911 http://modplug.svn.sourceforge.net/modplug/?rev=911&view=rev Author: saga-games Date: 2011-07-01 20:00:39 +0000 (Fri, 01 Jul 2011) Log Message: ----------- [Fix] Revision 901 broke entering numbers into the pan fields on the general tab. Revision Links: -------------- http://modplug.svn.sourceforge.net/modplug/?rev=901&view=rev Modified Paths: -------------- trunk/OpenMPT/mptrack/View_gen.cpp Modified: trunk/OpenMPT/mptrack/View_gen.cpp =================================================================== --- trunk/OpenMPT/mptrack/View_gen.cpp 2011-07-01 18:50:13 UTC (rev 910) +++ trunk/OpenMPT/mptrack/View_gen.cpp 2011-07-01 20:00:39 UTC (rev 911) @@ -636,7 +636,8 @@ { m_sbPan[chnMod4].SetPos(pan/4); pModDoc->UpdateAllViews(this, HINT_MODCHANNELS | (m_nActiveTab << HINT_SHIFT_CHNTAB)); - UpdateView(HINT_MODCHANNELS); + // Surround is forced off when changing pan, so uncheck the checkbox. + CheckDlgButton(IDC_CHECK2 + chnMod4 * 2, BST_UNCHECKED); } } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |