mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-03 18:14:25 +03:00
* gscreen.c (tree_size_allocate): Don't call save_setup() if
auto_save_setup is 0.
This commit is contained in:
parent
0165d678df
commit
6827099bbb
@ -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.
|
||||||
|
|
||||||
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user