summaryrefslogtreecommitdiff
path: root/src/graph_gui.cpp
diff options
context:
space:
mode:
authormaedhros <maedhros@openttd.org>2007-01-22 16:26:45 +0000
committermaedhros <maedhros@openttd.org>2007-01-22 16:26:45 +0000
commit35c80532e9823389b9435989675e54740910b659 (patch)
treea7b443ea51923a11f9d58e895a44feef44951f88 /src/graph_gui.cpp
parent8de419641027504876d0703066ca35d41c874fb2 (diff)
downloadopenttd-35c80532e9823389b9435989675e54740910b659.tar.xz
(svn r8350) -Codechange: [Graphs] Use DrawStringCentered instead of a hardcoded offset to make the string appear centred.
Diffstat (limited to 'src/graph_gui.cpp')
-rw-r--r--src/graph_gui.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/graph_gui.cpp b/src/graph_gui.cpp
index 6f0bc8d1f..ccc945a33 100644
--- a/src/graph_gui.cpp
+++ b/src/graph_gui.cpp
@@ -182,14 +182,15 @@ static void DrawGraph(const GraphDrawer *gw)
x += GRAPH_X_POSITION_SEPARATION;
}
} else {
- /* Add 8 to make the string appear centred between the lines. */
- x = gw->left + GRAPH_X_POSITION_BEGINNING + 8;
+ /* Draw the label under the data point rather than on the grid line. */
+ x = gw->left + GRAPH_X_POSITION_BEGINNING + (GRAPH_X_POSITION_SEPARATION / 2) + 1;
y = gw->top + gw->height + 1;
uint16 label = gw->x_values_start;
for (int i = 0; i < gw->num_on_x_axis; i++) {
SetDParam(0, label);
- DrawString(x, y, STR_01CB, GRAPH_AXIS_LABEL_COLOUR);
+ DrawStringCentered(x, y, STR_01CB, GRAPH_AXIS_LABEL_COLOUR);
+
label += gw->x_values_increment;
x += GRAPH_X_POSITION_SEPARATION;
}