Skip to content

Commit

Permalink
Minor tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
hrobeers committed Mar 20, 2020
1 parent a495370 commit 4e1ccb8
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions src/patheditor/patheditorwidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
4 changes: 2 additions & 2 deletions src/version_autogen.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions src/web/exportdialog.ui
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
<rect>
<x>0</x>
<y>0</y>
<width>1200</width>
<height>768</height>
<width>1100</width>
<height>700</height>
</rect>
</property>
<property name="windowTitle">
Expand Down

0 comments on commit 4e1ccb8

Please sign in to comment.