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

auto_save_setup is 0.
This commit is contained in:
Pavel Roskin 2001-04-06 19:44:07 +00:00
parent 0165d678df
commit 6827099bbb
2 changed files with 7 additions and 1 deletions

View File

@ -1,5 +1,8 @@
2001-04-06 Pavel Roskin <proski@gnu.org> 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 * Makefile.in: Add dependencies between gmc and static libraries
in the source tree. in the source tree.

View File

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