From: <nic...@us...> - 2014-06-25 17:03:22
|
Revision: 4848 http://sourceforge.net/p/mp-plugins/code/4848 Author: nicsergio Date: 2014-06-25 17:03:14 +0000 (Wed, 25 Jun 2014) Log Message: ----------- Modified Paths: -------------- trunk/plugins/ShortCuter&SkinEditor/Source/ShortCuter/Plugin/NavigatorDialog.cs Modified: trunk/plugins/ShortCuter&SkinEditor/Source/ShortCuter/Plugin/NavigatorDialog.cs =================================================================== --- trunk/plugins/ShortCuter&SkinEditor/Source/ShortCuter/Plugin/NavigatorDialog.cs 2014-06-23 19:09:23 UTC (rev 4847) +++ trunk/plugins/ShortCuter&SkinEditor/Source/ShortCuter/Plugin/NavigatorDialog.cs 2014-06-25 17:03:14 UTC (rev 4848) @@ -161,6 +161,18 @@ else base.selectOption(keySelected); //--> altrimenti selezione elemento lista } + + public new void Add(string strLabel) + { + bool mShowQuickNumbers = showQuickNumbers; + + if (strLabel.Length == 0 && showQuickNumbers) + showQuickNumbers = false; + + base.Add(strLabel); + + showQuickNumbers = mShowQuickNumbers; + } public override void Dispose() //Override metodo Dispose { panelView.SafeDispose(); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |