mirror of
https://github.com/RipMeApp/ripme.git
synced 2025-08-05 21:37:33 +02:00
App does not open set to most recently used language.
This commit is contained in:
@@ -570,7 +570,7 @@ public final class MainWindow implements Runnable, RipStatusHandler {
|
|||||||
configLogLevelCombobox = new JComboBox<>(
|
configLogLevelCombobox = new JComboBox<>(
|
||||||
new String[] { "Log level: Error", "Log level: Warn", "Log level: Info", "Log level: Debug" });
|
new String[] { "Log level: Error", "Log level: Warn", "Log level: Info", "Log level: Debug" });
|
||||||
configSelectLangComboBox = new JComboBox<>(Utils.getSupportedLanguages());
|
configSelectLangComboBox = new JComboBox<>(Utils.getSupportedLanguages());
|
||||||
configSelectLangComboBox.setSelectedItem(Utils.getSelectedLanguage());
|
configSelectLangComboBox.setSelectedItem(Utils.getConfigString("lang", Utils.getSelectedLanguage()));
|
||||||
configLogLevelCombobox.setSelectedItem(Utils.getConfigString("log.level", "Log level: Debug"));
|
configLogLevelCombobox.setSelectedItem(Utils.getConfigString("log.level", "Log level: Debug"));
|
||||||
setLogLevel(configLogLevelCombobox.getSelectedItem().toString());
|
setLogLevel(configLogLevelCombobox.getSelectedItem().toString());
|
||||||
configSaveDirLabel = new JLabel();
|
configSaveDirLabel = new JLabel();
|
||||||
|
Reference in New Issue
Block a user