@@ -241,11 +241,11 @@ def __init__(self):
241241 self .ui .extruder_temp_display .display_format = "upper_downer"
242242 self .ui .bed_temp_display .display_format = "upper_downer"
243243
244- self .controlPanel .call_load_panel .connect (self .show_LoadScreen )
245- self .filamentPanel .call_load_panel .connect (self .show_LoadScreen )
246- self .printPanel .call_load_panel .connect (self .show_LoadScreen )
247- self .utilitiesPanel .call_load_panel .connect (self .show_LoadScreen )
248- self .conn_window .call_load_panel .connect (self .show_LoadScreen )
244+ self .controlPanel .call_load_panel .connect (self .show_loadscreen )
245+ self .filamentPanel .call_load_panel .connect (self .show_loadscreen )
246+ self .printPanel .call_load_panel .connect (self .show_loadscreen )
247+ self .utilitiesPanel .call_load_panel .connect (self .show_loadscreen )
248+ self .conn_window .call_load_panel .connect (self .show_loadscreen )
249249
250250 self .filamentPanel .request_change_tab .connect (self .global_change_tab )
251251 self .printPanel .request_change_tab .connect (self .global_change_tab )
@@ -291,7 +291,7 @@ def handle_cancel_print(self, show: bool = True):
291291 self .cancelpage .show ()
292292
293293 @QtCore .pyqtSlot (bool , str , name = "show-load-page" )
294- def show_LoadScreen (self , show : bool = True , msg : str = "" ):
294+ def show_loadscreen (self , show : bool = True , msg : str = "" ):
295295 """Show or hide the loading overlay, guarded by the calling panel's visibility."""
296296 _sender = self .sender ()
297297 if _sender == self .controlPanel :
@@ -495,7 +495,7 @@ def global_change_page(self, tab_index: int, panel_index: int) -> None:
495495 "Panel page index expected type int, %s" , str (type (panel_index ))
496496 )
497497
498- self .show_LoadScreen (False )
498+ self .show_loadscreen (False )
499499 current_page = [
500500 self .ui .main_content_widget .currentIndex (),
501501 self .current_panel_index (),
0 commit comments