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());