diff options
author | Miguel de Icaza <miguel@nuclecu.unam.mx> | 1998-09-24 10:45:43 +0800 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 1998-09-24 10:45:43 +0800 |
commit | 8089200cb5317f3fc10db37e3967df4971bee10a (patch) | |
tree | 029fceae139134f963a17b4b4d896febfb3bb1c5 | |
parent | c9f3dfe29bdf0ff816bcab90498d1c009eb51a19 (diff) | |
download | gsoc2013-evolution-8089200cb5317f3fc10db37e3967df4971bee10a.tar gsoc2013-evolution-8089200cb5317f3fc10db37e3967df4971bee10a.tar.gz gsoc2013-evolution-8089200cb5317f3fc10db37e3967df4971bee10a.tar.bz2 gsoc2013-evolution-8089200cb5317f3fc10db37e3967df4971bee10a.tar.lz gsoc2013-evolution-8089200cb5317f3fc10db37e3967df4971bee10a.tar.xz gsoc2013-evolution-8089200cb5317f3fc10db37e3967df4971bee10a.tar.zst gsoc2013-evolution-8089200cb5317f3fc10db37e3967df4971bee10a.zip |
New:
New:
- Bold button works properly (ie, it detects what sort of
stuff you have and presses/unpresses accordingly).
- GNumeric now has operation modes: sheet and object.
Using delete/backspace/edit-cut will let you kill
objects.
- Lots of the bug fixes reported by Adrian/Federico.
Here is the detailed changelog:
1998-09-23 Miguel de Icaza <miguel@nuclecu.unam.mx>
* src/xml-io.c: Destroy the extra style.
* src/main.c (main): No need to init colors as they are auto-inited.
* src/style.c (font_compute_hints): At font creation time store a
couple of the font attributes for quick retrieval.
* src/sheet-view.c (sheet_view_construct): Do not allow this
button to have the focus either.
* src/item-bar.c (item_bar_draw): If the whole sheet is selected,
draw all of the columns in pressed presenstation
* src/sheet.c (sheet_is_all_selected): Return wheter all the sheet
is selected.
* src/utils.c (cell_name): Fixed cell name computation.
(parse_cell_name): Fixed parsing of the cell name.
svn path=/trunk/; revision=396
-rw-r--r-- | widgets/misc/e-colors.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/widgets/misc/e-colors.c b/widgets/misc/e-colors.c index 4d09ecfa85..d47a2af899 100644 --- a/widgets/misc/e-colors.c +++ b/widgets/misc/e-colors.c @@ -64,4 +64,6 @@ color_init (void) color_alloc_name ("gray60", &gs_light_gray); color_alloc_name ("gray20", &gs_dark_gray); + + color_inited = 1; } |