File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -120,28 +120,28 @@ EditorToolbarWidget::EditorToolbarWidget(Editor& editor) :
120120 [this ] {
121121 Editor::current ()->get_toolbox_widget ()->set_tileselect_select_mode (0 );
122122 },
123- _ (" Draw mode (The current tool applies to the tile under the mouse) " )),
123+ _ (" Draw mode" )),
124124
125125 // Select mode area
126126 std::make_unique<EditorToolbarButtonWidget>(" images/engine/editor/select-mode1.png" ,
127127 [this ] {
128128 Editor::current ()->get_toolbox_widget ()->set_tileselect_select_mode (1 );
129129 },
130- _ (" Box draw mode (The current tool applies to an area / box drawn with the mouse) " )),
130+ _ (" Box draw mode" )),
131131
132132 // Select mode fill button
133133 std::make_unique<EditorToolbarButtonWidget>(" images/engine/editor/select-mode2.png" ,
134134 [this ] {
135135 Editor::current ()->get_toolbox_widget ()->set_tileselect_select_mode (2 );
136136 },
137- _ (" Fill mode (The current tool applies to the empty area in the enclosed space that was clicked) " )),
137+ _ (" Fill mode" )),
138138
139139 // Select mode same button
140140 std::make_unique<EditorToolbarButtonWidget>(" images/engine/editor/select-mode3.png" ,
141141 [this ] {
142142 Editor::current ()->get_toolbox_widget ()->set_tileselect_select_mode (3 );
143143 },
144- _ (" Replace mode (The current tool applies to all tiles that are the same tile as the one under the mouse) " )),
144+ _ (" Replace mode" )),
145145 };
146146
147147 std::array<std::unique_ptr<EditorToolbarButtonWidget>, 2 > object_mode_widgets = {
You can’t perform that action at this time.
0 commit comments