From ae27a1204719f8459e3c43ef3c1cce2154ef0612 Mon Sep 17 00:00:00 2001 From: "Kirill Lipatov (Leency)" Date: Sun, 10 Jan 2016 15:47:29 +0000 Subject: [PATCH] appearance: fix tabs appearance according to new buttons style git-svn-id: svn://kolibrios.org@6048 a494cfbc-eb01-0410-851d-a64ba20cac60 --- programs/cmm/appearance/appearance.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/programs/cmm/appearance/appearance.c b/programs/cmm/appearance/appearance.c index 9ada78dad..4b0947210 100644 --- a/programs/cmm/appearance/appearance.c +++ b/programs/cmm/appearance/appearance.c @@ -234,8 +234,7 @@ void DrawTab(dword x,y, but_id, is_active, text) col_bg=system.color.work; col_text=system.color.work_text; } - DrawRectangle(x,y, w,h, system.color.work_graph); - DrawCaptButton(x+1,y+1, w-2,h-1, but_id, col_bg, col_text, text); + DrawCaptButton(x,y, w-1,h+1, but_id, col_bg, col_text, text); _PutImage(x+6,y+4, 16,15, but_id-2*16*15*3+#icons); }