diff options
author | frosch <frosch@openttd.org> | 2012-06-01 15:08:40 +0000 |
---|---|---|
committer | frosch <frosch@openttd.org> | 2012-06-01 15:08:40 +0000 |
commit | 65f51240cde28ea7d778794f48b8b6d022c8995c (patch) | |
tree | 11681a55a17fb77f98175f8bfaf19a48964934e6 /src/ai | |
parent | e240f660f0ea004049d199e0eb36cc69372b8265 (diff) | |
download | openttd-65f51240cde28ea7d778794f48b8b6d022c8995c.tar.xz |
(svn r24313) -Fix: Some obiwans wrt. clicking on setting buttons.
Diffstat (limited to 'src/ai')
-rw-r--r-- | src/ai/ai_gui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ai/ai_gui.cpp b/src/ai/ai_gui.cpp index 60b7838f8..3f8d4ee4d 100644 --- a/src/ai/ai_gui.cpp +++ b/src/ai/ai_gui.cpp @@ -435,7 +435,7 @@ struct AISettingsWindow : public Window { bool bool_item = (config_item.flags & SCRIPTCONFIG_BOOLEAN) != 0; int x = pt.x - wid->pos_x; - if (_current_text_dir == TD_RTL) x = wid->current_x - x; + if (_current_text_dir == TD_RTL) x = wid->current_x - 1 - x; x -= 4; /* One of the arrows is clicked (or green/red rect in case of bool value) */ if (IsInsideMM(x, 0, SETTING_BUTTON_WIDTH)) { |