From de05895ecdb1bad0249311d648766f5462ecfa7a Mon Sep 17 00:00:00 2001 From: Alec Murphy Date: Sun, 4 May 2025 15:08:13 -0400 Subject: [PATCH] Meta: s/MenuBar/AppBar/g --- Applications/OS/{MenuBar.app => AppBar.app}/Run.HC | 2 +- .../OS/{MenuBar.app => AppBar.app}/system_menu.png | Bin System/Core/SystemStarter.HC | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename Applications/OS/{MenuBar.app => AppBar.app}/Run.HC (99%) rename Applications/OS/{MenuBar.app => AppBar.app}/system_menu.png (100%) diff --git a/Applications/OS/MenuBar.app/Run.HC b/Applications/OS/AppBar.app/Run.HC similarity index 99% rename from Applications/OS/MenuBar.app/Run.HC rename to Applications/OS/AppBar.app/Run.HC index 5ca4831..11b9c8f 100644 --- a/Applications/OS/MenuBar.app/Run.HC +++ b/Applications/OS/AppBar.app/Run.HC @@ -70,7 +70,7 @@ U0 Main() { Window* win = Compositor.CreateWindow(0, 0, Display.Width(), 32, WIN_FLAGS_NOHILIGHT | WIN_FLAGS_SKIP); - Gui.Window.SetTitle(win, "MenuBar"); + Gui.Window.SetTitle(win, "AppBar"); ButtonWidget* system_menu_btn = Gui.CreateWidget(win, WIDGET_TYPE_BUTTON, 0, 0, 58, 24); Gui.Widget.SetText(system_menu_btn, ""); diff --git a/Applications/OS/MenuBar.app/system_menu.png b/Applications/OS/AppBar.app/system_menu.png similarity index 100% rename from Applications/OS/MenuBar.app/system_menu.png rename to Applications/OS/AppBar.app/system_menu.png diff --git a/System/Core/SystemStarter.HC b/System/Core/SystemStarter.HC index 807d355..300ed0f 100644 --- a/System/Core/SystemStarter.HC +++ b/System/Core/SystemStarter.HC @@ -143,7 +143,7 @@ U0 @systemstarter_startup() Spawn(SystemTray.Task, , "SystemTray", T(mp_cnt > 3, 2, 1)); SystemStarter.Spawn("M:/Applications/OS/Wallpaper.app", "Wallpaper"); - SystemStarter.Spawn("M:/Applications/OS/MenuBar.app", "MenuBar"); + SystemStarter.Spawn("M:/Applications/OS/AppBar.app", "AppBar"); SystemStarter.Spawn("M:/Applications/OS/TaskSwitcher.app", "TaskSwitcher");