GUI2/Label: tweaked link confirmation prompt

This commit is contained in:
Charles Dang 2018-04-03 15:30:43 +11:00
parent 4f4fa274a8
commit 27ec4cd316

View file

@ -169,7 +169,7 @@ void label::signal_handler_left_button_click(const event::ui_event /* event */,
DBG_GUI_E << "Clicked Link:\"" << link << "\"\n";
const int res = show_message(_("Confirm"), _("Do you want to open this link?") + std::string("\n\n") + link, dialogs::message::yes_no_buttons);
const int res = show_message(_("Do you want to open this link?"), link, dialogs::message::yes_no_buttons);
if(res == gui2::retval::OK) {
desktop::open_object(link);
}