From: <che...@us...> - 2010-01-11 10:14:49
|
Revision: 3345 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=3345&view=rev Author: chemelli_sf Date: 2010-01-11 10:14:41 +0000 (Mon, 11 Jan 2010) Log Message: ----------- Fixed layout issue on mapping form Modified Paths: -------------- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/InputMapper/InputMappingForm.cs Modified: trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/InputMapper/InputMappingForm.cs =================================================================== --- trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/InputMapper/InputMappingForm.cs 2010-01-10 18:40:19 UTC (rev 3344) +++ trunk/plugins/IR Server Suite/MediaPortal Plugins/MediaPortal Plugins/MP Control Plugin/InputMapper/InputMappingForm.cs 2010-01-11 10:14:41 UTC (rev 3345) @@ -689,7 +689,7 @@ { case "WINDOW": { - comboBoxCondProperty.DropDownStyle = ComboBoxStyle.DropDown; + comboBoxCondProperty.DropDownStyle = ComboBoxStyle.DropDownList; radioButtonWindow.Checked = true; comboBoxCondProperty.Enabled = true; @@ -725,7 +725,7 @@ _playerList[Array.IndexOf(_nativePlayerList, (string) data.Value)]); break; case "PLUGIN": - comboBoxCondProperty.DropDownStyle = ComboBoxStyle.DropDown; + comboBoxCondProperty.DropDownStyle = ComboBoxStyle.DropDownList; radioButtonPlugin.Checked = true; comboBoxCondProperty.Enabled = true; @@ -776,7 +776,7 @@ break; case "WINDOW": { - comboBoxCmdProperty.DropDownStyle = ComboBoxStyle.DropDown; + comboBoxCmdProperty.DropDownStyle = ComboBoxStyle.DropDownList; radioButtonActWindow.Checked = true; comboBoxSound.Enabled = true; comboBoxCmdProperty.Enabled = true; @@ -940,7 +940,7 @@ { if (!((Control) sender).Focused) return; - comboBoxCondProperty.DropDownStyle = ComboBoxStyle.DropDown; + comboBoxCondProperty.DropDownStyle = ComboBoxStyle.DropDownList; comboBoxCondProperty.Enabled = true; TreeNode node = getNode("CONDITION"); node.Tag = new Data("CONDITION", "WINDOW", "0"); @@ -993,7 +993,7 @@ { if (!((Control) sender).Focused) return; - comboBoxCondProperty.DropDownStyle = ComboBoxStyle.DropDown; + comboBoxCondProperty.DropDownStyle = ComboBoxStyle.DropDownList; comboBoxCondProperty.Enabled = true; TreeNode node = getNode("CONDITION"); node.Tag = new Data("CONDITION", "PLUGIN", _pluginList[0]); @@ -1021,7 +1021,7 @@ private void radioButtonActWindow_Click(object sender, EventArgs e) { - comboBoxCmdProperty.DropDownStyle = ComboBoxStyle.DropDown; + comboBoxCmdProperty.DropDownStyle = ComboBoxStyle.DropDownList; comboBoxSound.Enabled = true; comboBoxCmdProperty.Enabled = true; TreeNode node = getNode("COMMAND"); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |