Skip to content

Commit

Permalink
softer outer ring on dark themes
Browse files Browse the repository at this point in the history
  • Loading branch information
kupiqu committed Nov 23, 2019
1 parent 14bcfde commit 305dc36
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 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 "0.6.0")
set(PROJECT_VERSION "0.6.1")
set(PROJECT_VERSION_MAJOR 0)

cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
Expand Down
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
V0.6.1
---------

* Softer outer ring on dark themes

V0.6.0
---------

Expand Down
2 changes: 1 addition & 1 deletion breezebutton.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ namespace Breeze
case DecorationButtonType::Close:
{
const QColor button_color = QColor(252, 87, 83);
QPen button_pen( qGray(titleBarColor.rgb()) < 100 ? button_color.lighter(125) : button_color.darker(200) );
QPen button_pen( qGray(titleBarColor.rgb()) < 100 ? button_color.lighter(110) : button_color.darker(200) );
button_pen.setJoinStyle( Qt::MiterJoin );
button_pen.setWidthF( 1.7*qMax((qreal)1.0, 20/width ) );

Expand Down

0 comments on commit 305dc36

Please sign in to comment.