diff options
author | Papoteur <papoteur@mageialinux-online.org> | 2016-05-13 19:31:38 +0200 |
---|---|---|
committer | Papoteur <papoteur@mageialinux-online.org> | 2016-05-13 19:31:38 +0200 |
commit | abfd03bf13c256ff58aef841aec6e570f0826a53 (patch) | |
tree | e566de4a76b34a8afae4481c283970488a7ed17c /lib | |
parent | e9d3f94ca78535d28cf40d7be35bc496d5d431c6 (diff) | |
download | isodumper-abfd03bf13c256ff58aef841aec6e570f0826a53.tar isodumper-abfd03bf13c256ff58aef841aec6e570f0826a53.tar.gz isodumper-abfd03bf13c256ff58aef841aec6e570f0826a53.tar.bz2 isodumper-abfd03bf13c256ff58aef841aec6e570f0826a53.tar.xz isodumper-abfd03bf13c256ff58aef841aec6e570f0826a53.zip |
Disable the format button at start
Diffstat (limited to 'lib')
-rw-r--r-- | lib/isodumper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/isodumper.py b/lib/isodumper.py index 4951ae9..6deab83 100644 --- a/lib/isodumper.py +++ b/lib/isodumper.py @@ -676,7 +676,7 @@ NTFS or ext. You can specify a volume name and the format in a new dialog box.<B self.atelier.createLabel(self.formatbox,_("Format the device in FAT, NTFS or ext:")) self.atelier.createHStretch(self.formatbox) self.formatbt = self.atelier.createPushButton(self.formatbox, _("&Format the device" )) - #self.formatbt.setStretchable(0,True) + self.formatbt.setDisabled() self.progressbox = self.atelier.createHBox(self.box) self.progressbox.setWeight(1,10) self.progress = self.atelier.createProgressBar(self.progressbox,_("Progression"),100) |