aboutsummaryrefslogtreecommitdiff
path: root/Source/Ribbon
diff options
context:
space:
mode:
authorSergey Chebotar <s.chebotar@gmail.com>2021-12-22 17:07:37 +0300
committerSergey Chebotar <s.chebotar@gmail.com>2021-12-22 17:07:37 +0300
commitce5597d042062c820288c63b4e571ee77ac23ab0 (patch)
tree9400511fce89ae4b6d4df205b605f560778dcb57 /Source/Ribbon
parentf97d344f39c46b5e2f883765e8859e78007a11b0 (diff)
RegistryUtil and some fixes
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();
}
}
}