summaryrefslogtreecommitdiffstats
path: root/editor/plugins/control_editor_plugin.cpp
diff options
context:
space:
mode:
authorHaoyu Qiu <timothyqiu32@gmail.com>2024-10-09 08:56:16 +0800
committerHaoyu Qiu <timothyqiu32@gmail.com>2024-10-09 08:56:16 +0800
commit3a9f47054334cdbb466a5a4ef5859e4632bb9a23 (patch)
tree5ec9ccbbe43ee6ac62ef831df6d4d3f8e07dd615 /editor/plugins/control_editor_plugin.cpp
parent4c4e67334412f73c9deba5e5d29afa8651418af2 (diff)
downloadredot-engine-3a9f47054334cdbb466a5a4ef5859e4632bb9a23.tar.gz
Fix ControlEditorPopupButton arrow position in RTL language
Diffstat (limited to 'editor/plugins/control_editor_plugin.cpp')
-rw-r--r--editor/plugins/control_editor_plugin.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/editor/plugins/control_editor_plugin.cpp b/editor/plugins/control_editor_plugin.cpp
index 5c5f236ff3..cd13deb3e9 100644
--- a/editor/plugins/control_editor_plugin.cpp
+++ b/editor/plugins/control_editor_plugin.cpp
@@ -31,7 +31,6 @@
#include "control_editor_plugin.h"
#include "editor/editor_node.h"
-#include "editor/editor_settings.h"
#include "editor/editor_string_names.h"
#include "editor/editor_undo_redo_manager.h"
#include "editor/plugins/canvas_item_editor_plugin.h"
@@ -511,6 +510,9 @@ void ControlEditorPopupButton::_notification(int p_what) {
case NOTIFICATION_DRAW: {
if (arrow_icon.is_valid()) {
Vector2 arrow_pos = Point2(26, 0) * EDSCALE;
+ if (is_layout_rtl()) {
+ arrow_pos.x = get_size().x - arrow_pos.x - arrow_icon->get_width();
+ }
arrow_pos.y = get_size().y / 2 - arrow_icon->get_height() / 2;
draw_texture(arrow_icon, arrow_pos);
}