From bd39a3b4c485f4a850e6e515b5216c91042e7edc Mon Sep 17 00:00:00 2001 From: rubidium Date: Wed, 25 Nov 2009 21:30:45 +0000 Subject: [PATCH] (svn r18289) -Codechange: if using RTL draw the toolbar in the reverse direction so the buttons overlap 'nicely' --- src/toolbar_gui.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/toolbar_gui.cpp b/src/toolbar_gui.cpp index 8c258db74b..703ffb6411 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;