Misc bugfixes and cleanup

This commit is contained in:
Matt Keeter 2014-03-14 10:21:42 -04:00
parent 44fb4197ca
commit 1eaae882a0
3 changed files with 4 additions and 4 deletions

View file

@ -26,6 +26,6 @@ RESOURCES += \
qt.qrc \ qt.qrc \
../gl/gl.qrc ../gl/gl.qrc
QMAKE_INFO_PLIST = ../misc/Info.plist QMAKE_INFO_PLIST = ../app/Info.plist
ICON = ../misc/fstl.icns ICON = ../app/fstl.icns

View file

@ -15,5 +15,5 @@ QPushButton {
} }
QPushButton:pressed { QPushButton:pressed {
background-color: #ddd7d4; background-color: #ddd7c4;
} }

View file

@ -11,7 +11,7 @@ Window::Window(QWidget *parent) :
{ {
setWindowTitle("fstl"); setWindowTitle("fstl");
QFile styleFile( ":/qt/style.qss" ); QFile styleFile(":/qt/style.qss");
styleFile.open( QFile::ReadOnly ); styleFile.open( QFile::ReadOnly );
setStyleSheet(styleFile.readAll()); setStyleSheet(styleFile.readAll());