Skip to content

Commit

Permalink
V1.3.2: Fix issue #111
Browse files Browse the repository at this point in the history
  • Loading branch information
sardid committed Mar 20, 2023
1 parent fb8e165 commit a2bb374
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

project(sierrabreezeenhanced)
set(PROJECT_VERSION "1.3.1")
set(PROJECT_VERSION "1.3.2")
set(PROJECT_VERSION_MAJOR 0)

cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
Expand Down
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
V1.3.2
---------

* Fix issue #111

V1.3.1
---------
Expand Down
3 changes: 1 addition & 2 deletions breezedecoration.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -847,9 +847,8 @@ namespace Breeze
auto button = static_cast<Button*>( m_leftButtons->buttons().front().data() );
button->setGeometry( QRectF( QPoint( 0, 0 ), QSizeF( bWidth + hPadding, bHeight ) ) );
button->setFlag( Button::FlagFirstInList );
button->setHorizontalOffset( hMargin );

m_leftButtons->setPos(QPointF(0, verticalOffset + vPadding));
m_leftButtons->setPos(QPointF(hMargin, verticalOffset + vPadding));

} else m_leftButtons->setPos(QPointF(hMargin + borderLeft(), verticalOffset + vPadding));

Expand Down

0 comments on commit a2bb374

Please sign in to comment.