Default "save_window_positions_on_exit" to FALSE until I know why

gdk_window_get_position() doesn't work properly when the window was
never moved. gdk_window_get_geometry() seems to have the same problem.


--Sven
This commit is contained in:
Sven Neumann 1998-06-17 10:11:12 +00:00
parent 8f8cef6219
commit ef05e30ea4
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
Wed Jun 17 12:07:44 MEST 1998 Sven Neumann <sven@gimp.org>
* app/gimprc.c: default "save_window_positions_on_exit" to FALSE
until I know why gdk_window_get_position() doesn't work properly
when the window was never moved
Wed Jun 17 01:56:30 MEST 1998 Sven Neumann <sven@gimp.org>
* app/app_procs.c

View File

@ -113,7 +113,7 @@ int info_x = 165, info_y = 0;
int color_select_x = 140, color_select_y = 120;
int tool_options_x = 0, tool_options_y = 345;
int confirm_on_close = TRUE;
int save_window_positions_on_exit = TRUE;
int save_window_positions_on_exit = FALSE;
int default_width = 256;
int default_height = 256;
int default_type = RGB;