diff options
author | Franklin Sobrinho <franklin_gs@hotmail.com> | 2015-06-22 11:10:13 -0300 |
---|---|---|
committer | Franklin Sobrinho <franklin_gs@hotmail.com> | 2015-06-22 11:10:13 -0300 |
commit | 0159cecd6950a11853c243d09867ad20d8ac5cec (patch) | |
tree | d2534837930f35a3ed3edcbfade6847e59736e29 /modules | |
parent | d68a33b47383d4c1e0c6cc501d33ce8ce4ed4e8d (diff) |
Small fixes for Grid/Tile map editor palette
Diffstat (limited to 'modules')
-rw-r--r-- | modules/gridmap/grid_map_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gridmap/grid_map_editor_plugin.cpp b/modules/gridmap/grid_map_editor_plugin.cpp index 8875333307..40dd0603fb 100644 --- a/modules/gridmap/grid_map_editor_plugin.cpp +++ b/modules/gridmap/grid_map_editor_plugin.cpp @@ -738,7 +738,7 @@ void GridMapEditor::update_pallete() { float min_size = EDITOR_DEF("grid_map/preview_size",64); theme_pallete->set_min_icon_size(Size2(min_size, min_size)); - theme_pallete->set_fixed_column_width(min_size + 4); + theme_pallete->set_fixed_column_width(min_size*3/2); theme_pallete->set_max_text_lines(2); Ref<MeshLibrary> theme = node->get_theme(); |