Fix window title in quickstart

This commit is contained in:
Saptak S 2021-12-03 19:53:00 +05:30
parent 97a604a4c8
commit 3b16ca461b
No known key found for this signature in database
GPG Key ID: 7B7F1772C0C6FCBF

View File

@ -222,7 +222,7 @@ class TabWidget(QtWidgets.QTabWidget):
connection_tab.close_this_tab.connect(self.close_connection_tab) connection_tab.close_this_tab.connect(self.close_connection_tab)
self.tabs[self.current_tab_id] = connection_tab self.tabs[self.current_tab_id] = connection_tab
self.current_tab_id += 1 self.current_tab_id += 1
index = self.addTab(connection_tab, strings._("gui_settings_window_title")) index = self.addTab(connection_tab, strings._("gui_autoconnect_start"))
self.setCurrentIndex(index) self.setCurrentIndex(index)
def open_settings_tab(self): def open_settings_tab(self):