Remove Frame on Workout Info

.. workout info pane in train view has a frame which is jarring
   when compared to all the other sidebar items
This commit is contained in:
Mark Liversedge
2024-05-28 09:48:42 +01:00
parent 7684b4a39b
commit dc5da99cbc

View File

@@ -299,6 +299,7 @@ TrainSidebar::TrainSidebar(Context *context) : GcWindow(context), context(contex
connect(context, SIGNAL(ergFileSelected(ErgFileBase*)), workoutInfo, SLOT(ergFileSelected(ErgFileBase*)));
QScrollArea *workoutInfoScroller = new QScrollArea();
workoutInfoScroller->setWidgetResizable(true);
workoutInfoScroller->setFrameStyle(QFrame::NoFrame);
workoutInfoScroller->setWidget(workoutInfo);
#ifdef Q_OS_WIN
xde = QStyleFactory::create(OS_STYLE);