Skip to content

Commit

Permalink
KDE Plasma title bar fix
Browse files Browse the repository at this point in the history
On KDE Plasma after rendering recording the title bar text is left blank, this resolves that issue. Fixes phw#349
  • Loading branch information
gort818 authored Sep 25, 2019
1 parent 3c996ee commit 855f7a3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/ui/application-window.vala
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,12 @@ namespace Peek.Ui {

time_indicator_timeout = 0;
headerbar.set_title ("");

if (DesktopIntegration.is_plasma () ) {
headerbar.set_custom_title (null);
headerbar.set_title ("Peek");
}

return false;
});
}
Expand Down

0 comments on commit 855f7a3

Please sign in to comment.