After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 137128 - Gedit forgets unmaximized window size
Gedit forgets unmaximized window size
Status: RESOLVED FIXED
Product: gedit
Classification: Applications
Component: general
2.5.x
Other Linux
: Low enhancement
: ---
Assigned To: Gedit maintainers
gedit QA volunteers
Depends on:
Blocks:
 
 
Reported: 2004-03-14 03:08 UTC by Kevin Duffus
Modified: 2013-06-20 19:46 UTC
See Also:
GNOME target: ---
GNOME version: Unversioned Enhancement


Attachments
Save window position and fix saving the size of an unmaximixed window (8.78 KB, patch)
2010-05-09 08:41 UTC, Garrett Regier
none Details | Review
Updated to remove position logic (7.08 KB, patch)
2010-05-09 18:27 UTC, Garrett Regier
none Details | Review
Removed unused function (7.76 KB, patch)
2010-05-09 18:44 UTC, Garrett Regier
none Details | Review
Use variable instead of casting (7.75 KB, patch)
2010-05-09 18:51 UTC, Garrett Regier
none Details | Review
Don't use a timer (6.60 KB, patch)
2010-05-17 00:38 UTC, Garrett Regier
none Details | Review
Fix warning (6.60 KB, patch)
2010-05-17 00:45 UTC, Garrett Regier
none Details | Review
Dont check if configure_event is set (6.26 KB, patch)
2010-05-17 15:11 UTC, Garrett Regier
none Details | Review

Description Kevin Duffus 2004-03-14 03:08:04 UTC
Gedit forgets its unmaximized size if the window is closed after the window
has been maximized.

Steps to reproduce:
1. Open Gedit modify window to prefered size
2. Maximize the window
3. Quit the program
4. Restart the program and switch back to unmaximised state

The window should remember its size in unmaximised state on next startup of
the program even if it was closed in the maximised state.


Wonderful app, by the way. :)
Comment 1 Paolo Maggi 2004-03-14 09:17:03 UTC
Your are right, but implementing this feature in the current code base
requires an ammount of work I'm not sure it is worth doing.
I'm not going to implement it, but I'm willing to accept patches.
Comment 2 Julien Olivier 2006-04-28 12:00:57 UTC
If you or anyone intends to implement it, it could be safe to read this Evolution's bug #243962 in order to know how to implement it correctly.
Comment 3 Roman Polach 2008-06-04 16:17:34 UTC
I see this problem when I exit gedit in both unmaximized or maximized state.
Comment 4 Krishna Bharadwaj 2008-10-07 12:07:15 UTC
Can't we store the current size of the window on the window maximize event? Everytime the window is maximized, the latest dimension gets saved. we can retrieve this stored dimension when we open Gedit next time.. Please correct me if i'm wrong.
Comment 5 Garrett Regier 2010-05-09 08:41:12 UTC
Created attachment 160626 [details] [review]
Save window position and fix saving the size of an unmaximixed window
Comment 6 Paolo Borelli 2010-05-09 11:58:39 UTC
We intentionally do not save the position, the window manager should make its choice depending on which other windows are already on the screen, which is the current monitor in a multihead setup etc.
Comment 7 Garrett Regier 2010-05-09 17:34:01 UTC
Unfortunately this is not done and some applications do save their position.

For example devhelp does this, their keys are in /apps/devhelp/state/main/window and they are x_position and y_position.

Non-extensive list of other applications that save their position: Banshee, Rhythmbox, XChat, Glade.
Comment 8 Paolo Borelli 2010-05-09 17:46:05 UTC
they are all apps that usually have just a single window (except for devhelp, but usually you do not have two devhelp windows open either)

with a text editor it is different I have gedit windows open on different workspaces and they are all placed at different positions
Comment 9 Garrett Regier 2010-05-09 18:27:43 UTC
Created attachment 160651 [details] [review]
Updated to remove position logic
Comment 10 Garrett Regier 2010-05-09 18:44:03 UTC
Created attachment 160654 [details] [review]
Removed unused function
Comment 11 Ignacio Casal Quinteiro (nacho) 2010-05-09 18:48:20 UTC
Review of attachment 160654 [details] [review]:

One minor comment.

::: gedit/gedit-window.c
@@ +222,3 @@
+{
+save_window_state (GtkWidget *widget)
+static gboolean

you can just use window->priv->...
Comment 12 Garrett Regier 2010-05-09 18:51:25 UTC
Created attachment 160655 [details] [review]
Use variable instead of casting
Comment 13 Paolo Borelli 2010-05-16 23:10:15 UTC
Review of attachment 160655 [details] [review]:

It is late and I just glanced over the patch, but I still don't understand why we need a timer to poll the size instead of using the appropriate signal when the size changes
Comment 14 Garrett Regier 2010-05-17 00:38:02 UTC
Created attachment 161193 [details] [review]
Don't use a timer

I used a timer like other implementations I believe they did this in-case saving the size was slow which would affect resizing the window.

The attached patch does not use a timer.
Comment 15 Garrett Regier 2010-05-17 00:45:38 UTC
Created attachment 161194 [details] [review]
Fix warning
Comment 16 Ignacio Casal Quinteiro (nacho) 2010-05-17 14:22:48 UTC
Review of attachment 161194 [details] [review]:

Some questions inline.

::: gedit/gedit-window.c
@@ +371,3 @@
 	}
 
+	if (GTK_WIDGET_CLASS (gedit_window_parent_class)->window_state_event)

is this check really needed?

@@ +393,1 @@
+	if (GTK_WIDGET_CLASS (gedit_window_parent_class)->configure_event)

Same as above.
Comment 17 Garrett Regier 2010-05-17 15:11:51 UTC
Created attachment 161229 [details] [review]
Dont check if configure_event is set

The check for state_event is needed as it currently is not set.
Comment 18 Garrett Regier 2010-05-17 22:36:59 UTC
This problem has been fixed in the development version. The fix will be
available in the next major software release. Thank you for your bug report.
Comment 19 Roman Polach 2013-06-19 21:16:11 UTC
What is the version which is fixed?

In Mint 15 I still see this problem
(although Mint 15 uses pretty old version
of gedit - 2.30.4 - for unknown reason)
Comment 20 Garrett Regier 2013-06-19 22:17:38 UTC
2.31.2

Mint 15 has 2.30.4 installed by default, but you can install 3.6.4 by going into synaptic and choosing an alternative version.
Comment 21 Roman Polach 2013-06-20 19:46:37 UTC
Thanks. I do not see the problem in 3.6.4 anymore.