Skip to content

Commit

Permalink
Remove the hearts from default titlebar - mainly because large percen…
Browse files Browse the repository at this point in the history
…tage of systems can't display emoji in the title bar.
  • Loading branch information
Oleksiy-Yakovenko committed May 14, 2022
1 parent cb1a8e9 commit 7f893c8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions plugins/cocoaui/Preferences/GuiPreferencesWindowController.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@

#import <Cocoa/Cocoa.h>

#define DEFAULT_TITLEBAR_PLAYING_VALUE "💛💙 DeaDBeeF"
#define DEFAULT_TITLEBAR_PLAYING_VALUE "DeaDBeeF"
#define DEFAULT_TITLEBAR_SUBTITLE_PLAYING_VALUE "%artist% - %title%"
#define DEFAULT_TITLEBAR_STOPPED_VALUE "💛💙 DeaDBeeF"
#define DEFAULT_TITLEBAR_STOPPED_VALUE "DeaDBeeF"
#define DEFAULT_TITLEBAR_SUBTITLE_STOPPED_VALUE "Stopped"

NS_ASSUME_NONNULL_BEGIN
Expand Down
4 changes: 2 additions & 2 deletions plugins/gtkui/gtkui.c
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ int gtkui_disable_seekbar_overlay = 0;

#define TRAY_ICON "deadbeef_tray_icon"

const char *gtkui_default_titlebar_playing = "💛💙 DeaDBeeF - %artist% - %title%";
const char *gtkui_default_titlebar_stopped = "💛💙 DeaDBeeF";
const char *gtkui_default_titlebar_playing = "DeaDBeeF - %artist% - %title%";
const char *gtkui_default_titlebar_stopped = "DeaDBeeF";

static char *titlebar_playing_bc;
static char *titlebar_stopped_bc;
Expand Down

0 comments on commit 7f893c8

Please sign in to comment.