Changeset ca9142e
- Timestamp:
- Apr 18, 2004, 12:13:40 PM (20 years ago)
- Branches:
- master, barnowl_perlaim, debian, owl, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- 93991e6
- Parents:
- 818a073
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
ChangeLog
rfe67f1f rca9142e 4 4 Do OLC formatting for anything coming from olc.matisse 5 5 Improvements to popup size algorithm (from gildea) 6 Improved 'show colors' with non-colored labels 6 7 7 8 2.1.7 -
functions.c
r789462a rca9142e 2893 2893 2894 2894 owl_fmtext_init_null(&fm); 2895 owl_fmtext_append_normal(&fm, "default: "); 2895 2896 owl_fmtext_append_normal_color(&fm, "default\n", OWL_COLOR_DEFAULT); 2897 2898 owl_fmtext_append_normal(&fm,"red: "); 2896 2899 owl_fmtext_append_normal_color(&fm, "red\n", OWL_COLOR_RED); 2900 2901 owl_fmtext_append_normal(&fm,"green: "); 2897 2902 owl_fmtext_append_normal_color(&fm, "green\n", OWL_COLOR_GREEN); 2903 2904 owl_fmtext_append_normal(&fm,"yellow: "); 2898 2905 owl_fmtext_append_normal_color(&fm, "yellow\n", OWL_COLOR_YELLOW); 2906 2907 owl_fmtext_append_normal(&fm,"blue: "); 2899 2908 owl_fmtext_append_normal_color(&fm, "blue\n", OWL_COLOR_BLUE); 2909 2910 owl_fmtext_append_normal(&fm,"magenta: "); 2900 2911 owl_fmtext_append_normal_color(&fm, "magenta\n", OWL_COLOR_MAGENTA); 2912 2913 owl_fmtext_append_normal(&fm,"cyan: "); 2901 2914 owl_fmtext_append_normal_color(&fm, "cyan\n", OWL_COLOR_CYAN); 2915 2916 owl_fmtext_append_normal(&fm,"white: "); 2902 2917 owl_fmtext_append_normal_color(&fm, "white\n", OWL_COLOR_WHITE); 2903 2918
Note: See TracChangeset
for help on using the changeset viewer.