Skip to content

Commit

Permalink
GUI2/Label: tweaked link confirmation prompt
Browse files Browse the repository at this point in the history
(cherry-picked from commit 384ba46)
  • Loading branch information
Vultraz committed Oct 7, 2018
1 parent 3f5d554 commit 9b1431b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/widgets/label.cpp
Expand Up @@ -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);
}
Expand Down

0 comments on commit 9b1431b

Please sign in to comment.