aboutsummaryrefslogtreecommitdiff
path: root/Source/Ribbon
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Ribbon')
-rw-r--r--Source/Ribbon/RibbonController.cs7
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();
}
}
}