Prompt user when there are unverified devices

This commit is contained in:
Nicolas Werner 2021-11-01 22:20:15 +01:00
parent 5bd6208c43
commit 2aabe9dcac
No known key found for this signature in database
GPG key ID: C8D75E610773F2D9
9 changed files with 120 additions and 10 deletions

View file

@ -62,13 +62,16 @@ Theme::Theme(std::string_view theme)
sidebarBackground_ = QColor("#233649");
alternateButton_ = QColor("#ccc");
red_ = QColor("#a82353");
orange_ = QColor("#fcbe05");
} else if (theme == "dark") {
sidebarBackground_ = QColor("#2d3139");
alternateButton_ = QColor("#414A59");
red_ = QColor("#a82353");
orange_ = QColor("#fcc53a");
} else {
sidebarBackground_ = p.window().color();
alternateButton_ = p.dark().color();
red_ = QColor("red");
orange_ = QColor("orange");
}
}