1
1

* gscreen.c (tree_size_allocate): Don't call save_setup() if

auto_save_setup is 0.
Этот коммит содержится в:
Pavel Roskin 2001-04-06 19:44:07 +00:00
родитель 0165d678df
Коммит 6827099bbb
2 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -1,5 +1,8 @@
2001-04-06 Pavel Roskin <proski@gnu.org>
* gscreen.c (tree_size_allocate): Don't call save_setup() if
auto_save_setup is 0.
* Makefile.in: Add dependencies between gmc and static libraries
in the source tree.

Просмотреть файл

@ -2310,7 +2310,10 @@ tree_size_allocate (GtkWidget *widget, GtkAllocation *allocation, WPanel *panel)
} else {
tree_panel_visible = allocation->width;
}
save_setup ();
if (auto_save_setup) {
save_setup ();
}
}
void