summaryrefslogtreecommitdiff
path: root/src/widget.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-11-22 11:20:12 +0000
committerrubidium <rubidium@openttd.org>2009-11-22 11:20:12 +0000
commitd913282e7a15d65c03df7a41cec14e1514d81fde (patch)
treecc973fb810b7d3bdb30263d727cd5cb51c7d04da /src/widget.cpp
parente9b6e73333231fd67c8c3b4933cc5c1f3003d351 (diff)
downloadopenttd-d913282e7a15d65c03df7a41cec14e1514d81fde.tar.xz
(svn r18212) -Codechange: remove unneeded 'parameters' for WWT_CAPTION, WWT_CLOSEBOX and WWT_STICKYBOX in the nested widget arrays
Diffstat (limited to 'src/widget.cpp')
-rw-r--r--src/widget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/widget.cpp b/src/widget.cpp
index af2e65bd8..c7372dce0 100644
--- a/src/widget.cpp
+++ b/src/widget.cpp
@@ -1698,7 +1698,7 @@ NWidgetLeaf::NWidgetLeaf(WidgetType tp, Colours colour, int index, uint16 data,
break;
case WWT_STICKYBOX:
- this->SetFill(false, true);
+ this->SetFill(false, false);
this->SetMinimalSize(WD_STICKYBOX_WIDTH, 14);
this->SetDataTip(STR_NULL, STR_TOOLTIP_STICKY);
break;