diff options
Diffstat (limited to 'Source/Ribbon/RibbonController.cs')
-rw-r--r-- | Source/Ribbon/RibbonController.cs | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Source/Ribbon/RibbonController.cs b/Source/Ribbon/RibbonController.cs index 7e15d09..cfe4532 100644 --- a/Source/Ribbon/RibbonController.cs +++ b/Source/Ribbon/RibbonController.cs @@ -42,16 +42,15 @@ namespace RehauSku.Ribbon else { - dw.FillSkuAmountDict(); - dw.FillPriceList(); + dw.FillNewPriceList(); } } } - public void OnSettingsPressed(IRibbonControl control) { - Application.Run(new Settings.SettingsForm()); + Form settingsForm = new Settings.SettingsForm(); + settingsForm.Show(); } } } |