summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYosef Or Boczko <yoseforb@gmail.com>2022-03-20 00:43:57 +0200
committerYosef Or Boczko <yoseforb@gmail.com>2022-03-20 00:54:26 +0200
commit33f3ab999161fa4c31351c4b62e23d604ade3119 (patch)
treec40d6a3561fed299f60e36f7422506a1ac585352
parenta585457861b05c93446bf4d5af5c7d028b63a999 (diff)
downloadgtk+-33f3ab999161fa4c31351c4b62e23d604ade3119.tar.gz
popover-menu: Fix buttons' position in RTL
The radio/check/previous buttons shows in the wrong place in RTL. Fix it. #4641 Signed-off-by: Yosef Or Boczko <yoseforb@gmail.com>
-rw-r--r--gtk/gtkmodelbutton.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkmodelbutton.c b/gtk/gtkmodelbutton.c
index bde7e31c1b..27b5fd6e3f 100644
--- a/gtk/gtkmodelbutton.c
+++ b/gtk/gtkmodelbutton.c
@@ -379,8 +379,8 @@ update_node_ordering (GtkModelButton *button)
gtk_widget_insert_before (button->end_indicator, GTK_WIDGET (button), child);
child = gtk_widget_get_last_child (GTK_WIDGET (button));
- if (child != button->start_box)
- gtk_widget_insert_after (button->start_box, GTK_WIDGET (button), child);
+ if (button->end_indicator && child != button->end_indicator)
+ gtk_widget_insert_after (button->end_indicator, GTK_WIDGET (button), child);
}
}