From 081cc2eb79ba917fe037b31d01f669c1a8b16ab9 Mon Sep 17 00:00:00 2001 From: Dean Lee Date: Sat, 1 Jul 2023 15:40:06 +0800 Subject: [PATCH] ui/MapSettings: remove white border around destinations (#28771) --- selfdrive/ui/qt/maps/map_settings.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/selfdrive/ui/qt/maps/map_settings.cc b/selfdrive/ui/qt/maps/map_settings.cc index e95244c574..c4f205dcb7 100644 --- a/selfdrive/ui/qt/maps/map_settings.cc +++ b/selfdrive/ui/qt/maps/map_settings.cc @@ -80,6 +80,7 @@ MapSettings::MapSettings(bool closeable, QWidget *parent) destinations_layout->setContentsMargins(0, 32, 0, 32); destinations_layout->setSpacing(20); ScrollView *destinations_scroller = new ScrollView(destinations_container, this); + destinations_scroller->setFrameShape(QFrame::NoFrame); frame->addWidget(destinations_scroller); setStyleSheet("MapSettings { background-color: #333333; }");