diff options
author | Andreas Volz <linux@brachttal.net> | 2010-07-06 19:49:48 +0000 |
---|---|---|
committer | Andreas Volz <linux@brachttal.net> | 2010-07-06 19:49:48 +0000 |
commit | 6e35928deace04fb811bcc6d575efdc0a9f8b73c (patch) | |
tree | 9ed529e862315d5f4b3b6284e2f44d9e6e8b09a8 /src/bin/e_config.h | |
parent | 18a8c0961cd51b51f259577ed98a2603ccd5a9a5 (diff) | |
download | enlightenment-6e35928deace04fb811bcc6d575efdc0a9f8b73c.tar.gz |
added two new configuration options for the geometry_manipulation conf plugin:
int geometry_auto_move; // GUI
int geometry_auto_resize_limit; // GUI
This does influence the configure_request algorithm in the way that the user could disable the window
geometry move and resize feature that is useful for e.g. Gnome fileselector or gnome-terminal tabs.
There was a use case on the list where this was not nice so I created an option to disable it. If one thinks
a special e.src shouldn't activate this feature by default, please change it.
SVN revision: 50083
Diffstat (limited to 'src/bin/e_config.h')
-rw-r--r-- | src/bin/e_config.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/bin/e_config.h b/src/bin/e_config.h index 9c9f8182ff..d2727f46ef 100644 --- a/src/bin/e_config.h +++ b/src/bin/e_config.h @@ -127,6 +127,8 @@ struct _E_Config int desk_resist; // GUI int window_resist; // GUI int gadget_resist; // GUI + int geometry_auto_move; // GUI + int geometry_auto_resize_limit; // GUI int winlist_warp_while_selecting; // GUI int winlist_warp_at_end; // GUI double winlist_warp_speed; // GUI |