Skip to content

Commit

Permalink
gui_cache: Use new check_backups_only property
Browse files Browse the repository at this point in the history
  • Loading branch information
khronokernel committed Nov 6, 2023
1 parent 139f94a commit 5db862d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/wx_gui/gui_cache_os_update.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def __init__(self, parent: wx.Frame, title: str, global_constants: constants.Con

self.kdk_obj: kdk_handler.KernelDebugKitObject = None
def _kdk_thread_spawn():
self.kdk_obj = kdk_handler.KernelDebugKitObject(self.constants, self.os_data[1], self.os_data[0], passive=True)
self.kdk_obj = kdk_handler.KernelDebugKitObject(self.constants, self.os_data[1], self.os_data[0], passive=True, check_backups_only=True)

kdk_thread = threading.Thread(target=_kdk_thread_spawn)
kdk_thread.start()
Expand Down

0 comments on commit 5db862d

Please sign in to comment.