File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed
Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -347,20 +347,19 @@ def setup_mdi(self):
347347 return
348348
349349 widgets = {
350- "plots " : self .plot_widget ,
351- "project " : self .project_widget ,
352- "terminal " : self .terminal_widget ,
353- "fitting controls " : self .controls_widget ,
350+ "Plots " : self .plot_widget ,
351+ "Project " : self .project_widget ,
352+ "Terminal " : self .terminal_widget ,
353+ "Fitting Controls " : self .controls_widget ,
354354 }
355355 self .setup_mdi_widgets ()
356356
357357 for title , widget in reversed (widgets .items ()):
358- widget .setWindowTitle (title . title () )
358+ widget .setWindowTitle (title )
359359 window = self .mdi .addSubWindow (
360360 widget , QtCore .Qt .WindowType .WindowMinMaxButtonsHint | QtCore .Qt .WindowType .WindowTitleHint
361361 )
362- window .setWindowTitle (title .title ())
363-
362+ window .setWindowTitle (title )
364363 self .reset_mdi_layout ()
365364 self .startup_dlg = self .takeCentralWidget ()
366365 self .setCentralWidget (self .mdi )
You can’t perform that action at this time.
0 commit comments