You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Gtk/RestoreWindow.vala
+2-5Lines changed: 2 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -230,11 +230,8 @@ class RestoreWindow : Gtk.Window{
230
230
var title = _("Cancel restore?");
231
231
232
232
var msg = _("Cancelling the restore process will leave the target system in an inconsistent state. The system may fail to boot or you may run into various issues. After cancelling, you need to restore another snapshot, to bring the system to a consistent state. Click Yes to confirm.");
233
-
234
-
var type =Gtk.MessageType.ERROR;
235
-
var buttons_type =Gtk.ButtonsType.YES_NO;
236
-
237
-
var dlg =newCustomMessageDialog(title, msg, type, this, buttons_type);
233
+
234
+
var dlg =newCustomMessageDialog(title, msg, Gtk.MessageType.ERROR, this, Gtk.ButtonsType.YES_NO);
0 commit comments