X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Ftrace.cpp;h=978f3dc84137d467fcc0d0dee4288710fb280838;hp=e481f2a009753aacd2a82a15eca93bb5a3895761;hb=24c29d4f917ffac5a280d572cc04d1edb66a81b9;hpb=bf9f12687c8d43422455cbdc27ec1cc5d4305149 diff --git a/pv/view/trace.cpp b/pv/view/trace.cpp index e481f2a0..978f3dc8 100644 --- a/pv/view/trace.cpp +++ b/pv/view/trace.cpp @@ -31,8 +31,9 @@ #include "tracepalette.hpp" #include "view.hpp" -#include -#include +#include "pv/globalsettings.hpp" +#include "pv/widgets/colourbutton.hpp" +#include "pv/widgets/popup.hpp" namespace pv { namespace views { @@ -46,10 +47,12 @@ const QColor Trace::DarkGrayBGColour = QColor(0, 0, 0, 15*255/100); Trace::Trace(std::shared_ptr channel) : base_(channel), - coloured_bg_(true), // Default setting is set in MainWindow::setup_ui() popup_(nullptr), popup_form_(nullptr) { + GlobalSettings settings; + coloured_bg_ = settings.value(GlobalSettings::Key_View_ColouredBG).toBool(); + connect(channel.get(), SIGNAL(name_changed(const QString&)), this, SLOT(on_name_changed(const QString&))); connect(channel.get(), SIGNAL(colour_changed(const QColor&)),