From 1eaae882a001a2d28213155df68a8a5874fc1f9f Mon Sep 17 00:00:00 2001 From: Matt Keeter Date: Fri, 14 Mar 2014 10:21:42 -0400 Subject: [PATCH] Misc bugfixes and cleanup --- qt/fstl.pro | 4 ++-- qt/style.qss | 2 +- src/window.cpp | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/qt/fstl.pro b/qt/fstl.pro index 74cab3b..1dfdd24 100644 --- a/qt/fstl.pro +++ b/qt/fstl.pro @@ -26,6 +26,6 @@ RESOURCES += \ qt.qrc \ ../gl/gl.qrc -QMAKE_INFO_PLIST = ../misc/Info.plist +QMAKE_INFO_PLIST = ../app/Info.plist -ICON = ../misc/fstl.icns +ICON = ../app/fstl.icns diff --git a/qt/style.qss b/qt/style.qss index 36eeee4..0297148 100644 --- a/qt/style.qss +++ b/qt/style.qss @@ -15,5 +15,5 @@ QPushButton { } QPushButton:pressed { - background-color: #ddd7d4; + background-color: #ddd7c4; } diff --git a/src/window.cpp b/src/window.cpp index f3a7438..1e389f6 100644 --- a/src/window.cpp +++ b/src/window.cpp @@ -11,7 +11,7 @@ Window::Window(QWidget *parent) : { setWindowTitle("fstl"); - QFile styleFile( ":/qt/style.qss" ); + QFile styleFile(":/qt/style.qss"); styleFile.open( QFile::ReadOnly ); setStyleSheet(styleFile.readAll()); -- 2.39.2