Changeset 330bcec
- Timestamp:
- Dec 24, 2003, 11:16:10 PM (19 years ago)
- Branches:
- master, barnowl_perlaim, debian, owl, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- 3895e23
- Parents:
- fc57e84
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
ChangeLog
r5c1393d r330bcec 5 5 Removed the "possibly not readable" part of the config parsing 6 6 error 7 In the sepbar, reverse video the view name when it's not set to 8 view_home (as opposed to the static 'all'). 7 9 8 10 2.1.1-pre-2 -
util.c
r40458b9 r330bcec 47 47 48 48 foo=owl_view_get_filtname(v); 49 if (strcmp(foo, "all")) wattroff(sepwin, A_REVERSE);49 if (strcmp(foo, owl_global_get_view_home(&g))) wattroff(sepwin, A_REVERSE); 50 50 waddstr(sepwin, " "); 51 51 waddstr(sepwin, owl_view_get_filtname(v)); 52 52 waddstr(sepwin, " "); 53 if (strcmp(foo, "all")) wattron(sepwin, A_REVERSE);53 if (strcmp(foo, owl_global_get_view_home(&g))) wattron(sepwin, A_REVERSE); 54 54 55 55 if (owl_mainwin_is_curmsg_truncated(owl_global_get_mainwin(&g))) {
Note: See TracChangeset
for help on using the changeset viewer.