1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-06 12:20:30 +00:00

Merge pull request #42705 from Calinou/tilemap-editor-fix-osx-tooltip

Fix rectangle paint tooltip for the tilemap editor on macOS
This commit is contained in:
Rémi Verschelde
2020-10-27 14:43:50 +01:00
committed by GitHub
2 changed files with 8 additions and 0 deletions

View File

@@ -2069,7 +2069,11 @@ TileMapEditor::TileMapEditor(EditorNode *p_editor) {
// Tools.
paint_button = memnew(ToolButton);
paint_button->set_shortcut(ED_SHORTCUT("tile_map_editor/paint_tile", TTR("Paint Tile"), KEY_P));
#ifdef OSX_ENABLED
paint_button->set_tooltip(TTR("Shift+LMB: Line Draw\nShift+Command+LMB: Rectangle Paint"));
#else
paint_button->set_tooltip(TTR("Shift+LMB: Line Draw\nShift+Ctrl+LMB: Rectangle Paint"));
#endif
paint_button->connect("pressed", this, "_button_tool_select", make_binds(TOOL_NONE));
paint_button->set_toggle_mode(true);
toolbar->add_child(paint_button);