diff --git a/constants.h b/constants.h index f317fa1..f837ad2 100755 --- a/constants.h +++ b/constants.h @@ -60,7 +60,7 @@ static const int BUTTON_WIDTH = 100; static const int INT_FORM_WIDTH = 42; static const int SIDEBAR_WIDTH = 220; static const int LINK_HEIGHT = 30; -static const int LINK_ICON_DIMS = 60; +static const int LINK_ICON_DIMS = 70; static const int SIDEBAR_LOGO_DIMS = 280; static const int PETRI_MIN = 1; static const int PETRI_MAX = 8; diff --git a/gcg-gui.pro b/gcg-gui.pro index 94f17d0..2670758 100755 --- a/gcg-gui.pro +++ b/gcg-gui.pro @@ -8,7 +8,7 @@ QT += core gui greaterThan(QT_MAJOR_VERSION, 4): QT += widgets -TARGET = gcg-gui +TARGET = "G-Code Generator" TEMPLATE = app # The following define makes your compiler emit warnings if you use diff --git a/gcg-gui.pro.user b/gcg-gui.pro.user index 05f3fbc..5724fdc 100644 --- a/gcg-gui.pro.user +++ b/gcg-gui.pro.user @@ -1,6 +1,6 @@ - + EnvironmentId @@ -62,7 +62,7 @@ Desktop Qt 5.9.1 clang 64bit Desktop Qt 5.9.1 clang 64bit qt.591.clang_64_kit - 1 + 0 0 0 @@ -310,7 +310,7 @@ gcg-gui.pro false - /Users/brendanwong/Documents/Qt projects/build-gcg-gui-Desktop_Qt_5_9_1_clang_64bit-Release/gcg-gui.app/Contents/MacOS + /Users/brendanwong/Documents/Qt projects/build-gcg-gui-Desktop_Qt_5_9_1_clang_64bit-Debug/G-Code Generator.app/Contents/MacOS 3768 false true diff --git a/wizard.cpp b/wizard.cpp index e029609..6affe94 100755 --- a/wizard.cpp +++ b/wizard.cpp @@ -88,7 +88,7 @@ void Wizard::buildSideBar(QHBoxLayout *mainLayout) //main logo instantiation + properties QLabel *logo = new QLabel; logo->setText("SE3D Logo"); - QPixmap image(":/Resources/se3d-circle-logo.svg"); + QPixmap image("://Resources/se3d-circle-logo.svg"); image.setDevicePixelRatio(devicePixelRatio()); logo->setPixmap(image.scaled(SIDEBAR_LOGO_DIMS, SIDEBAR_LOGO_DIMS, Qt::KeepAspectRatio, Qt::SmoothTransformation));