From 4e1ccb8d49b32609bbff02a31c34aa3f4fcc88bb Mon Sep 17 00:00:00 2001 From: hrobeers <2812522+hrobeers@users.noreply.github.com> Date: Fri, 20 Mar 2020 15:24:46 +0100 Subject: [PATCH] Minor tweaks --- src/patheditor/patheditorwidget.cpp | 8 ++++---- src/version_autogen.hpp | 4 ++-- src/web/exportdialog.ui | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/patheditor/patheditorwidget.cpp b/src/patheditor/patheditorwidget.cpp index 379c808..ae3ebb2 100644 --- a/src/patheditor/patheditorwidget.cpp +++ b/src/patheditor/patheditorwidget.cpp @@ -61,15 +61,15 @@ PathEditorWidget::PathEditorWidget(QWidget *parent) : // zoom in auto btnuser = new QPushButton(this); btnuser->setGeometry(QRect(0,0,30,30)); - btnuser->setText("+"); + btnuser->setText("-"); _scene->addWidget(btnuser); - connect(btnuser, SIGNAL(clicked()), this, SLOT(onZoomIn()), Qt::UniqueConnection); + connect(btnuser, SIGNAL(clicked()), this, SLOT(onZoomOut()), Qt::UniqueConnection); // zoom out btnuser = new QPushButton(this); btnuser->setGeometry(QRect(35,0,30,30)); - btnuser->setText("-"); + btnuser->setText("+"); _scene->addWidget(btnuser); - connect(btnuser, SIGNAL(clicked()), this, SLOT(onZoomOut()), Qt::UniqueConnection); + connect(btnuser, SIGNAL(clicked()), this, SLOT(onZoomIn()), Qt::UniqueConnection); // layout _mainLayout->addWidget(_view); diff --git a/src/version_autogen.hpp b/src/version_autogen.hpp index 2bd1016..db9ef3e 100644 --- a/src/version_autogen.hpp +++ b/src/version_autogen.hpp @@ -11,7 +11,7 @@ #define MINOR_VERSION 2 #define REVISION 0 -#define BUILD_NUMBER 607 -#define COMMIT_HASH "66a0edf269c739c6cbd0c798c8c7b3aeb2524a9a" +#define BUILD_NUMBER 608 +#define COMMIT_HASH "a495370f63b67d9195db191e5fb41e504ea612a2" #endif // VERSION_AUTOGEN_H diff --git a/src/web/exportdialog.ui b/src/web/exportdialog.ui index 169044d..ae3ce19 100644 --- a/src/web/exportdialog.ui +++ b/src/web/exportdialog.ui @@ -6,8 +6,8 @@ 0 0 - 1200 - 768 + 1100 + 700