From 29f3b8fe5183b1ff061b36419ba9273b9b6abe01 Mon Sep 17 00:00:00 2001 From: thooge Date: Tue, 6 Oct 2020 09:01:46 +0200 Subject: [PATCH] Add title to warning dialog --- lib/GUI/HELPERS.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/GUI/HELPERS.pm b/lib/GUI/HELPERS.pm index ebe37b4..8f9ce56 100644 --- a/lib/GUI/HELPERS.pm +++ b/lib/GUI/HELPERS.pm @@ -75,6 +75,7 @@ sub print_warning { $box = Gtk2::MessageDialog->new( undef, [qw/destroy-with-parent modal/], 'warning', 'none', $t); + $box->set_title(_("Warning")); $box->set_default_size(600, 0); $box->set_resizable(1);