diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/toolbar_gui.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/toolbar_gui.cpp b/src/toolbar_gui.cpp index 8c258db74..703ffb641 100644 --- a/src/toolbar_gui.cpp +++ b/src/toolbar_gui.cpp @@ -1014,7 +1014,8 @@ public: GfxFillRect(this->pos_x, this->pos_y, this->pos_x + this->current_x - 1, this->pos_y + this->current_y - 1, 0xB2); GfxFillRect(this->pos_x, this->pos_y, this->pos_x + this->current_x - 1, this->pos_y + this->current_y - 1, 0xB4, FILLRECT_CHECKER); - for (NWidgetBase *child_wid = this->head; child_wid != NULL; child_wid = child_wid->next) { + bool rtl = _dynlang.text_dir == TD_RTL; + for (NWidgetBase *child_wid = rtl ? this->tail : this->head; child_wid != NULL; child_wid = rtl ? child_wid->prev : child_wid->next) { if (child_wid->type == NWID_SPACER) continue; if (!this->visible[((NWidgetCore*)child_wid)->index]) continue; |