mirror of
https://github.com/RGBCube/serenity
synced 2025-05-24 01:15:07 +00:00
WindowServer: Fix slightly off alignment of menubar clock.
This commit is contained in:
parent
f40ef7f495
commit
1e0971c8b4
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
Add a link
Reference in a new issue