Skip to content

Commit

Permalink
clone_vm: Don't use warning MessageBox on success
Browse files Browse the repository at this point in the history
QMessageBox.warning shows a scary exclamation mark, which is confusing
when reporting success. Use QMessageBox.information instead.

Reported-by: Rafał Wojdyła <[email protected]>
  • Loading branch information
HW42 committed Jul 24, 2024
1 parent 4011bc6 commit 8500b36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qubesmanager/clone_vm.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def clone_finished(self):
self.tr("ERROR: {0}").format(self.thread.msg))
else:
(title, msg) = self.thread.msg
QtWidgets.QMessageBox.warning(
QtWidgets.QMessageBox.information(
self,
title,
msg)
Expand Down

0 comments on commit 8500b36

Please sign in to comment.