Skip to content
Snippets Groups Projects
Commit 6004d9ab authored by moebius/ALUG's avatar moebius/ALUG Committed by Christopher Spinrath
Browse files

GUI: Default to removable drives only

parent 666f33cc
No related branches found
No related tags found
No related merge requests found
......@@ -109,6 +109,7 @@ class MSClonerGui(threading.Thread):
self.root.wm_title("MassStorageCloner - GPLv3 or newer (C) 2014 Martin Süfke")
FrameHead = VGridFrame(self.root, relief='raised')
self.CbRemovableOnly = VCheckbutton(master=FrameHead, text="Removable only", command=self.OnCbRemovableOnly)
self.CbRemovableOnly.select() # selecting for the gui only, here. Run OnCbRemovableOnly() in run()
FrameContent = Tk.Frame(self.root)
FrameContDevice = Tk.Frame(FrameContent)
......@@ -133,6 +134,7 @@ class MSClonerGui(threading.Thread):
logger.debug("GUI thread built GUI")
# Activate Event system
self.ThreadNotifyQueue.SetRoot(self.root, self.ThreadNotifyCallback)
self.OnCbRemovableOnly() # update the state of the removable filter to default-on
#if not self.DoQuit:
self.root.mainloop()
logger.debug("Tk mainloop() ended")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment