Skip to content

Commit

Permalink
Merge pull request #90886 from timothyqiu/lefty
Browse files Browse the repository at this point in the history
Fix offset of node filter menu separator icon
  • Loading branch information
akien-mga committed Apr 19, 2024
2 parents fba6803 + 6a406bf commit 4a01602
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions editor/scene_tree_dock.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,9 @@
#include "editor/themes/editor_scale.h"
#include "scene/animation/animation_tree.h"
#include "scene/gui/check_box.h"
#include "scene/main/window.h"
#include "scene/property_utils.h"
#include "scene/resources/packed_scene.h"
#include "servers/display_server.h"
#include "servers/rendering_server.h"

#include "modules/modules_enabled.gen.h" // For regex.
#ifdef MODULE_REGEX_ENABLED
Expand Down Expand Up @@ -3636,10 +3634,7 @@ void SceneTreeDock::_filter_option_selected(int p_option) {

void SceneTreeDock::_append_filter_options_to(PopupMenu *p_menu, bool p_include_separator) {
if (p_include_separator) {
p_menu->add_separator();

p_menu->set_item_text(-1, TTR("Filters"));
p_menu->set_item_indent(-1, -2);
p_menu->add_separator(TTR("Filters"));
}

p_menu->add_item(TTR("Filter by Type"), FILTER_BY_TYPE);
Expand Down

0 comments on commit 4a01602

Please sign in to comment.