summaryrefslogtreecommitdiffstats
path: root/moviewidget.cpp
diff options
context:
space:
mode:
authorArno <arno@disconnect.de>2018-11-24 04:18:20 +0100
committerArno <arno@disconnect.de>2018-11-24 04:18:20 +0100
commitab787e997c927bf8e2684b2e1ac667a57f225102 (patch)
tree2f1998924f19535bccbaec5d59ae8e753ee29ae3 /moviewidget.cpp
parent92ada0efad9f0b0a3263e4245cfd1441f4b9f7a9 (diff)
downloadSheMov-ab787e997c927bf8e2684b2e1ac667a57f225102.tar.gz
SheMov-ab787e997c927bf8e2684b2e1ac667a57f225102.tar.bz2
SheMov-ab787e997c927bf8e2684b2e1ac667a57f225102.zip
Dark theme GUI changes
Add icons better suited for dark themes and don't draw an ellipse around the letter when calling Helper::icon and use the theme's text color to better match the desktop theme. Just be a good tenant and respect the user's choices where applicable.
Diffstat (limited to 'moviewidget.cpp')
-rw-r--r--moviewidget.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/moviewidget.cpp b/moviewidget.cpp
index dd51a34..9c114e6 100644
--- a/moviewidget.cpp
+++ b/moviewidget.cpp
@@ -39,7 +39,7 @@ MovieWidget::~MovieWidget(){
void MovieWidget::setupWidget(){
QToolBar *toolbar = new QToolBar;
- QPixmap buttplug(":/butt_plug.png");
+ QPixmap buttplug(":/butt_plug_light.png");
QMatrix rotatematrix;
rotatematrix.rotate(90);
QIcon buttplugRight(buttplug.transformed(rotatematrix));
@@ -117,7 +117,7 @@ void MovieWidget::setupWidget(){
connect(mBottomView, &SmView::doubleClicked, this, &MovieWidget::bottomDoubleClicked);
QAction *playSelectedA = new QAction(QIcon(":/spreadingpants.png"), tr("Play selected..."), this);
connect(playSelectedA, &QAction::triggered, this, &MovieWidget::playSelected);
- QAction *editFileA = new QAction(QIcon(":/huge_bra.png"), tr("Edit file..."), this);
+ QAction *editFileA = new QAction(QIcon(":/huge_bra_light.png"), tr("Edit file..."), this);
connect(editFileA, &QAction::triggered, this, &MovieWidget::editFile);
QAction *filenameToClipA = new QAction(tr("Filename to clip"), this);
connect(filenameToClipA, &QAction::triggered, [=] { copyToClipboard(FilenameRole); });