6 Commits

Author SHA1 Message Date
440d63aade macros.inc: rename area to RECT
All checks were successful
Build system / Check kernel codestyle (pull_request) Successful in 26s
Build system / Build (pull_request) Successful in 4m53s
2025-03-19 23:43:15 +01:00
c489b72571 macros.inc: replace unused RECT struct with 'area', use it in pipet 2025-03-19 23:43:15 +01:00
daaab58d9c [Apps/Pipet] Fixed broken cyrillic encoding (once again) 2025-03-19 23:43:15 +01:00
83585e9e8d [Apps/Pipet] Proper color fixes for all skins and size optimization 2025-03-19 23:43:15 +01:00
257172445f [Apps/Pipet] Fixed header encoding 2025-03-19 23:43:15 +01:00
9670d67b35 [Apps/Piped] Fixed wrong window colors on some skins 2025-03-19 23:43:15 +01:00

View File

@@ -1163,7 +1163,10 @@ void draw_window(void)
if (w_redraw)
{
kos_WindowRedrawStatus(1);
kos_DefineAndDrawWindow(10, 40, 384 + 9, 388 + kos_GetSkinHeight(), 0x74, 0x444444, 0, 0, (Dword)header);
//kos_DefineAndDrawWindow(50, 50, 640, 506 - 22 + kos_GetSkinHeight(), 0x74, 0xEEEEEE, 0, 0, (Dword)windowTitle);
kos_DefineAndDrawWindow(10, 40, 384 + 9, 384 + 25, 0x74, 0x444444, 0, 0, (Dword)header);
kos_WindowRedrawStatus(2);
w_redraw = false;
}