Skip to content

Commit 26d7cf0

Browse files
committed
App does not open set to most recently used language.
1 parent 5d7897d commit 26d7cf0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/rarchives/ripme/ui/MainWindow.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -570,7 +570,7 @@ public void setValueAt(Object value, int row, int col) {
570570
configLogLevelCombobox = new JComboBox<>(
571571
new String[] { "Log level: Error", "Log level: Warn", "Log level: Info", "Log level: Debug" });
572572
configSelectLangComboBox = new JComboBox<>(Utils.getSupportedLanguages());
573-
configSelectLangComboBox.setSelectedItem(Utils.getSelectedLanguage());
573+
configSelectLangComboBox.setSelectedItem(Utils.getConfigString("lang", Utils.getSelectedLanguage()));
574574
configLogLevelCombobox.setSelectedItem(Utils.getConfigString("log.level", "Log level: Debug"));
575575
setLogLevel(configLogLevelCombobox.getSelectedItem().toString());
576576
configSaveDirLabel = new JLabel();

0 commit comments

Comments
 (0)