WindowServer: Fix slightly off alignment of menubar clock.
This commit is contained in:
parent
f40ef7f495
commit
1e0971c8b4
Notes:
sideshowbarker
2024-07-19 15:07:41 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/1e0971c8b42
1 changed files with 1 additions and 1 deletions
|
@ -955,7 +955,7 @@ void WSWindowManager::draw_menubar()
|
|||
|
||||
time_t now = time(nullptr);
|
||||
auto* tm = localtime(&now);
|
||||
auto time_text = String::format("%4u-%02u-%02u %02u:%02u:%02u\n",
|
||||
auto time_text = String::format("%4u-%02u-%02u %02u:%02u:%02u",
|
||||
tm->tm_year + 1900,
|
||||
tm->tm_mon + 1,
|
||||
tm->tm_mday,
|
||||
|
|
Loading…
Add table
Reference in a new issue