From 83d36dccba804dc20c27e6eb218fa4755f110f9d Mon Sep 17 00:00:00 2001 From: Mark Liversedge Date: Mon, 12 Nov 2012 16:12:56 +0000 Subject: [PATCH] UI Nits: Ride list horiz scrollbar The ride list / navigator gets a horizontal scrollbar every time it is shown as the columns are resized but not taking into account the need for a vertical scrollbar. The reasons behind this are more complicated but this patch fixes this annoyance. --- src/RideNavigator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/RideNavigator.cpp b/src/RideNavigator.cpp index dbb8271b4..ec6d0d1ab 100644 --- a/src/RideNavigator.cpp +++ b/src/RideNavigator.cpp @@ -349,7 +349,7 @@ void RideNavigator::setWidth(int x) void RideNavigator::showEvent(QShowEvent *) { - resetView(); + //resetView();//XXX cocks up on sidebar? init = true; setWidth(geometry().width()); }