Skip to content

Commit

Permalink
XY context menu: Removed "..." from nested menu items
Browse files Browse the repository at this point in the history
  • Loading branch information
duzenko committed Oct 2, 2021
1 parent a2805c0 commit e87e9c2
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 e87e9c2

Please sign in to comment.