Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
osak
tools
Commits
6004d9ab
Commit
6004d9ab
authored
Mar 26, 2015
by
moebius/ALUG
Committed by
Christopher Spinrath
Jan 21, 2016
Browse files
GUI: Default to removable drives only
parent
666f33cc
Changes
1
Hide whitespace changes
Inline
Side-by-side
MassStorageCloner/gui.py
View file @
6004d9ab
...
...
@@ -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"
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment