Skip to content

Commit

Permalink
gui2: No stops at the end of tooltips
Browse files Browse the repository at this point in the history
  • Loading branch information
irydacea committed Apr 17, 2015
1 parent c93101f commit d3ea9bb
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/gui/dialogs/addon/description.cpp
Expand Up @@ -389,7 +389,7 @@ void taddon_description::pre_show(CVideo& /*video*/, twindow& window)

if (!desktop::clipboard::available()) {
url_copy_button.set_active(false);
url_copy_button.set_tooltip(_("Clipboard support not found, contact your packager."));
url_copy_button.set_tooltip(_("Clipboard support not found, contact your packager"));
}
} else {
url_go_button.set_active(false);
Expand Down
2 changes: 1 addition & 1 deletion src/gui/dialogs/chat_log.cpp
Expand Up @@ -414,7 +414,7 @@ class tchat_log::view
boost::ref(window)));
if (!desktop::clipboard::available()) {
model_.copy_button->set_active(false);
model_.copy_button->set_tooltip(_("Clipboard support not found, contact your packager."));
model_.copy_button->set_tooltip(_("Clipboard support not found, contact your packager"));
}

model_.page_label = &find_widget<tcontrol>(&window, "page_label", false);
Expand Down
2 changes: 1 addition & 1 deletion src/gui/dialogs/game_cache_options.cpp
Expand Up @@ -95,7 +95,7 @@ void tgame_cache_options::pre_show(CVideo& video, twindow& window)
this));
if (!desktop::clipboard::available()) {
copy.set_active(false);
copy.set_tooltip(_("Clipboard support not found, contact your packager."));
copy.set_tooltip(_("Clipboard support not found, contact your packager"));
}

tbutton& browse = find_widget<tbutton>(&window, "browse", false);
Expand Down
2 changes: 1 addition & 1 deletion src/gui/dialogs/game_paths.cpp
Expand Up @@ -116,7 +116,7 @@ void tgame_paths::pre_show(CVideo& /*video*/, twindow& window)

if(!desktop::clipboard::available()) {
copy_w.set_active(false);
copy_w.set_tooltip(_("Clipboard support not found, contact your packager."));
copy_w.set_tooltip(_("Clipboard support not found, contact your packager"));
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/gui/dialogs/gamestate_inspector.cpp
Expand Up @@ -710,7 +710,7 @@ class tgamestate_inspector::view

if (!desktop::clipboard::available()) {
model_.copy_button->set_active(false);
model_.copy_button->set_tooltip(_("Clipboard support not found, contact your packager."));
model_.copy_button->set_tooltip(_("Clipboard support not found, contact your packager"));
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/gui/dialogs/lua_interpreter.cpp
Expand Up @@ -456,7 +456,7 @@ void tlua_interpreter::controller::bind(twindow& window)

if (!desktop::clipboard::available()) {
copy_button->set_active(false);
copy_button->set_tooltip(_("Clipboard support not found, contact your packager."));
copy_button->set_tooltip(_("Clipboard support not found, contact your packager"));
}

LOG_LUA << "Exiting tlua_interpreter::controller::bind" << std::endl;
Expand Down
2 changes: 1 addition & 1 deletion src/gui/dialogs/screenshot_notification.cpp
Expand Up @@ -91,7 +91,7 @@ void tscreenshot_notification::pre_show(CVideo& /*video*/, twindow& window)

if (!desktop::clipboard::available()) {
copy_b.set_active(false);
copy_b.set_tooltip(_("Clipboard support not found, contact your packager."));
copy_b.set_tooltip(_("Clipboard support not found, contact your packager"));
}

tbutton& open_b = find_widget<tbutton>(&window, "open", false);
Expand Down
2 changes: 1 addition & 1 deletion src/gui/dialogs/wml_error.cpp
Expand Up @@ -221,7 +221,7 @@ void twml_error::pre_show(CVideo& /*video*/, twindow& window)

if (!desktop::clipboard::available()) {
copy_button.set_active(false);
copy_button.set_tooltip(_("Clipboard support not found, contact your packager."));
copy_button.set_tooltip(_("Clipboard support not found, contact your packager"));
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/gui/widgets/label.cpp
Expand Up @@ -155,7 +155,7 @@ void tlabel::signal_handler_left_button_click(const event::tevent /* event */, b
}

if (!desktop::open_object_is_supported()) {
gui2::show_message(get_window()->video(), "", _("Opening links is not supported, contact your packager."), gui2::tmessage::auto_close);
gui2::show_message(get_window()->video(), "", _("Opening links is not supported, contact your packager"), gui2::tmessage::auto_close);
handled = true;
return;
}
Expand Down

0 comments on commit d3ea9bb

Please sign in to comment.