Skip to content

Commit

Permalink
Merge pull request #24 from duzenko/ui_trivial
Browse files Browse the repository at this point in the history
XY context menu: Removed "..." from nested menu items
  • Loading branch information
codereader committed Oct 2, 2021
2 parents a2805c0 + e87e9c2 commit 609031f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions radiant/ui/UserInterfaceModule.cpp
Expand Up @@ -79,12 +79,12 @@ namespace
const char* const LAYER_ICON = "layers.png";
const char* const CREATE_LAYER_TEXT = N_("Create Layer...");

const char* const ADD_TO_LAYER_TEXT = N_("Add to Layer...");
const char* const MOVE_TO_LAYER_TEXT = N_("Move to Layer...");
const char* const REMOVE_FROM_LAYER_TEXT = N_("Remove from Layer...");
const char* const ADD_TO_LAYER_TEXT = N_("Add to Layer");
const char* const MOVE_TO_LAYER_TEXT = N_("Move to Layer");
const char* const REMOVE_FROM_LAYER_TEXT = N_("Remove from Layer");

const char* const SELECT_BY_FILTER_TEXT = N_("Select by Filter...");
const char* const DESELECT_BY_FILTER_TEXT = N_("Deselect by Filter...");
const char* const SELECT_BY_FILTER_TEXT = N_( "Select by Filter" );
const char* const DESELECT_BY_FILTER_TEXT = N_( "Deselect by Filter" );
}

const std::string& UserInterfaceModule::getName() const
Expand Down

0 comments on commit 609031f

Please sign in to comment.