Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2009-06-07 18:13:15 +0000
committerStijn Buys <ingar@osirion.org>2009-06-07 18:13:15 +0000
commitf33257521bf80dcef8575c4fc3ddaf4a40ff588a (patch)
tree5e3a112e814478ba3ab624e0867761654a5ea0a4 /src/client/client.cc
parent5b94df1df2707b36401d91d80b92d0e4cdfd2277 (diff)
fixed a few widget order problems, changed map targetting behaviour
Diffstat (limited to 'src/client/client.cc')
-rw-r--r--src/client/client.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/client/client.cc b/src/client/client.cc
index 47af682..1fa2796 100644
--- a/src/client/client.cc
+++ b/src/client/client.cc
@@ -426,6 +426,7 @@ void Client::func_ui_help()
con_print << " ui help show this help" << std::endl;
con_print << " ui debug toggle debug mode" << std::endl;
con_print << " ui list list widgets" << std::endl;
+ con_print << " ui visible list visible widgets" << std::endl;
con_print << " ui restart reload user interface files" << std::endl;
}
@@ -451,6 +452,8 @@ void Client::func_ui(std::string const &args)
ui::UI::ui_debug = !ui::UI::ui_debug;
} else if (command.compare("list") == 0) {
ui::root()->list();
+ } else if (command.compare("visible") == 0) {
+ ui::root()->list_visible();
} else if (command.compare("restart") == 0) {
ui::root()->load_menus();
ui::root()->load_settings();