Mercurial > pidgin.yaz
diff console/libgnt/gntcolors.c @ 13911:b210409cdc56
[gaim-migrate @ 16410]
Change some colors for terminals that don't support customizing colors.
Make taskbar behave properly when moving a window.
Read startup options from command-line (copy-paste from gtkgaim [sic]).
I am doing #define _GNU_SOURCE and #include <getopt.h> ... I don't know
if that's alright. So now you can specify a location to read config files
from.
committer: Tailor Script <tailor@pidgin.im>
author | Sadrul Habib Chowdhury <imadil@gmail.com> |
---|---|
date | Mon, 03 Jul 2006 02:27:41 +0000 |
parents | eaaf73de9188 |
children | 0a0d2a1fd2bc |
line wrap: on
line diff
--- a/console/libgnt/gntcolors.c Mon Jul 03 01:39:51 2006 +0000 +++ b/console/libgnt/gntcolors.c Mon Jul 03 02:27:41 2006 +0000 @@ -29,10 +29,11 @@ else { init_pair(GNT_COLOR_NORMAL, COLOR_BLACK, COLOR_WHITE); - init_pair(GNT_COLOR_HIGHLIGHT, COLOR_YELLOW, COLOR_BLACK); + init_pair(GNT_COLOR_HIGHLIGHT, COLOR_WHITE, COLOR_BLUE); init_pair(GNT_COLOR_SHADOW, COLOR_BLACK, COLOR_BLACK); - init_pair(GNT_COLOR_TITLE, COLOR_WHITE, COLOR_BLACK); - init_pair(GNT_COLOR_TEXT_NORMAL, COLOR_BLACK, COLOR_WHITE); + init_pair(GNT_COLOR_TITLE, COLOR_WHITE, COLOR_BLUE); + init_pair(GNT_COLOR_TITLE_D, COLOR_WHITE, COLOR_BLACK); + init_pair(GNT_COLOR_TEXT_NORMAL, COLOR_WHITE, COLOR_BLUE); init_pair(GNT_COLOR_HIGHLIGHT_D, COLOR_CYAN, COLOR_BLACK); init_pair(GNT_COLOR_DISABLED, COLOR_YELLOW, COLOR_WHITE); }