summaryrefslogtreecommitdiff
path: root/src/framerate_gui.cpp
diff options
context:
space:
mode:
authorPeter Nelson <peter1138@openttd.org>2021-04-21 15:22:45 +0100
committerMichael Lutz <michi@icosahedron.de>2021-04-21 23:12:10 +0200
commit2a0365b3d992fb602fd91b218b4a8647ddb46975 (patch)
tree54ec865630b8292ce84eb47fff78f407411926ab /src/framerate_gui.cpp
parent96b78bc2cd9790e89228c53b4803a78320fc20bd (diff)
downloadopenttd-2a0365b3d992fb602fd91b218b4a8647ddb46975.tar.xz
Cleanup: Remove unnecessary parameter of GetScrolledRowFromWidget()
Line height defaults to the resize height of the relevant widget, which is set in all cases. Therefore it is not necessary to specify this value every time. Additionally fixes scrolled padding for the framerate window.
Diffstat (limited to 'src/framerate_gui.cpp')
-rw-r--r--src/framerate_gui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/framerate_gui.cpp b/src/framerate_gui.cpp
index 9ac78dc68..a2fd03044 100644
--- a/src/framerate_gui.cpp
+++ b/src/framerate_gui.cpp
@@ -683,7 +683,7 @@ struct FramerateWindow : Window {
case WID_FRW_TIMES_AVERAGE: {
/* Open time graph windows when clicking detail measurement lines */
const Scrollbar *sb = this->GetScrollbar(WID_FRW_SCROLLBAR);
- int line = sb->GetScrolledRowFromWidget(pt.y - FONT_HEIGHT_NORMAL - VSPACING, this, widget, VSPACING, FONT_HEIGHT_NORMAL);
+ int line = sb->GetScrolledRowFromWidget(pt.y, this, widget, VSPACING + FONT_HEIGHT_NORMAL);
if (line != INT_MAX) {
line++;
/* Find the visible line that was clicked */