summaryrefslogtreecommitdiff
path: root/apps/gui/statusbar.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/gui/statusbar.c')
-rw-r--r--apps/gui/statusbar.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/gui/statusbar.c b/apps/gui/statusbar.c
index fc0b9637cf..29b80112f7 100644
--- a/apps/gui/statusbar.c
+++ b/apps/gui/statusbar.c
@@ -43,6 +43,7 @@
43#include "recording.h" 43#include "recording.h"
44#include "pcm_record.h" 44#include "pcm_record.h"
45#endif 45#endif
46#include "appevents.h"
46 47
47/* FIXME: should be removed from icon.h to avoid redefinition, 48/* FIXME: should be removed from icon.h to avoid redefinition,
48 but still needed for compatibility with old system */ 49 but still needed for compatibility with old system */
@@ -817,3 +818,8 @@ int gui_statusbar_height(void)
817 return global_settings.statusbar ? STATUSBAR_HEIGHT : 0; 818 return global_settings.statusbar ? STATUSBAR_HEIGHT : 0;
818} 819}
819 820
821void gui_statusbar_changed(bool enabled)
822{
823 (void)enabled;
824 send_event(GUI_EVENT_STATUSBAR_TOGGLE, NULL);
825}