mirror of
https://github.com/Omni-guides/Jackify.git
synced 2026-06-17 14:07:45 +02:00
Sync from development - prepare for v0.5.0
This commit is contained in:
@@ -44,6 +44,12 @@ class MainWindowGeometryMixin:
|
||||
|
||||
def _is_compact_mode(self) -> bool:
|
||||
try:
|
||||
if hasattr(self, 'wabbajack_installer_screen') and hasattr(self.wabbajack_installer_screen, 'show_details_checkbox'):
|
||||
if self.wabbajack_installer_screen.show_details_checkbox.isChecked():
|
||||
return False
|
||||
if hasattr(self, 'install_mo2_screen') and hasattr(self.install_mo2_screen, 'show_details_checkbox'):
|
||||
if self.install_mo2_screen.show_details_checkbox.isChecked():
|
||||
return False
|
||||
if hasattr(self, 'install_modlist_screen') and hasattr(self.install_modlist_screen, 'show_details_checkbox'):
|
||||
if self.install_modlist_screen.show_details_checkbox.isChecked():
|
||||
return False
|
||||
|
||||
@@ -220,6 +220,10 @@ class MainWindowUIMixin:
|
||||
stacked_widget=self.stacked_widget, additional_tasks_index=3, system_info=self.system_info
|
||||
)
|
||||
self.install_mo2_screen = screen
|
||||
try:
|
||||
screen.resize_request.connect(self._on_child_resize_request)
|
||||
except Exception:
|
||||
pass
|
||||
return screen
|
||||
|
||||
def _debug_screen_change(self, index):
|
||||
|
||||
Reference in New Issue
Block a user