aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPapoteur <papoteur@mageia.org>2026-04-06 21:56:10 +0200
committerPapoteur <papoteur@mageia.org>2026-04-06 21:56:10 +0200
commit3197dfdf70edc504e59a47b43287532f972cac8c (patch)
tree1a13c471afcb704ca36b416844583da571f76e00
parentd2d7be71a1f574e820d2788bb06a93c05f3f94fe (diff)
downloadisodumper-topic/AUI.tar
isodumper-topic/AUI.tar.gz
isodumper-topic/AUI.tar.bz2
isodumper-topic/AUI.tar.xz
isodumper-topic/AUI.zip
Give size to msgboxtopic/AUI
-rwxr-xr-xlib/isodumper.py19
1 files changed, 12 insertions, 7 deletions
diff --git a/lib/isodumper.py b/lib/isodumper.py
index 4269309..1f15202 100755
--- a/lib/isodumper.py
+++ b/lib/isodumper.py
@@ -473,7 +473,7 @@ class IsoDumper(basedialog.BaseDialog):
info = { "title": _("Formatting confirmation in {}".format(self.partition_cb.value())),
"text": self.warning,
"richtext" : True,
- "size": [200, 120],
+ "size": [300, 150],
}
if common.askYesOrNo(info):
self.progress.setEnabled()
@@ -784,6 +784,7 @@ class IsoDumper(basedialog.BaseDialog):
"You are free to unplug it now, a logfile \n\
/var/log/magiback.log has been saved."
),
+ "size": [250, 150],
}
if common.infoMsgBox(info):
return
@@ -802,6 +803,7 @@ class IsoDumper(basedialog.BaseDialog):
"You are free to unplug it now, a logfile \n\
/var/log/magiback.log has been saved."
),
+ "size": [300, 150],
}
if common.warningMsgBox(info):
return
@@ -817,7 +819,7 @@ class IsoDumper(basedialog.BaseDialog):
will make the device or the backup unusable.\n\
Are you sure you want to quit during writing?"
),
- "size": [250, 150],
+ "size": [300, 200],
}
if common.askYesOrNo(info):
return True
@@ -831,7 +833,7 @@ class IsoDumper(basedialog.BaseDialog):
info = { "title":_("Error"),
"richtext": True,
"text": message,
- "size": [250, 200],
+ "size": [300, 200],
}
common.warningMsgBox(info)
@@ -875,7 +877,7 @@ class IsoDumper(basedialog.BaseDialog):
def help_dialog(self):
info = { "title": _("IsoDumper"),
"richtext": True,
- "size": (400, 400),
+ "size": (400, 600),
"text": _("Mageia IsoDumper")
+ "<BR />\
----------------<BR />"
@@ -958,6 +960,7 @@ exFAT, NTFS or ext. You can specify a volume name and the format in a new dialog
info = { "title": _("Error"),
"richtext": True,
"text": _("There is another instance of Isodumper already running."),
+ "size": [250, 150],
}
common.infoMsgBox(info)
yui.YUILoader.deleteUI()
@@ -1230,7 +1233,7 @@ exFAT, NTFS or ext. You can specify a volume name and the format in a new dialog
)
+ "\n"
+ _("Do you want to continue?"),
- "size": [200, 120],
+ "size": [300, 150],
}
if common.askYesOrNo(info):
pass
@@ -1247,7 +1250,7 @@ exFAT, NTFS or ext. You can specify a volume name and the format in a new dialog
"text": _(
"No GPG signature has been found. Are you sure you want to use this image?"
),
- "size": [200, 120],
+ "size": [300, 200],
}
if common.askYesOrNo(info):
pass
@@ -1343,6 +1346,7 @@ exFAT, NTFS or ext. You can specify a volume name and the format in a new dialog
info = { "title":_("Error"),
"richtext": True,
"text": _("No image for backup is selected."),
+ "size": [250, 150],
}
common.warningMsgBox(info)
return
@@ -1352,7 +1356,7 @@ exFAT, NTFS or ext. You can specify a volume name and the format in a new dialog
info = { "title": _("Writing confirmation"),
"richtext": True,
"text": self.warning,
- "size": [250, 150],
+ "size": [300, 150],
}
if common.askYesOrNo(info):
if self.deviceSize > 1024 * 1024 * 1024 * 32:
@@ -1372,6 +1376,7 @@ exFAT, NTFS or ext. You can specify a volume name and the format in a new dialog
"title":_("Error"),
"richtext": True,
"text": _("No image to write is selected."),
+ "size": [250, 150],
}
common.warningMsgBox(info)
return