diff options
author | JP Rosevear <jpr@ximian.com> | 2003-04-17 00:23:58 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2003-04-17 00:23:58 +0800 |
commit | 8d2d08837d5e8969db0a62547124bab9c6507459 (patch) | |
tree | fd254a2a12316faa4f36f2bd3aea18646240d61e /calendar/gui/apps_evolution_calendar.schemas | |
parent | 611fbb0443eb7a26a252ca4a706f9b592cdf0b98 (diff) | |
download | gsoc2013-evolution-8d2d08837d5e8969db0a62547124bab9c6507459.tar gsoc2013-evolution-8d2d08837d5e8969db0a62547124bab9c6507459.tar.gz gsoc2013-evolution-8d2d08837d5e8969db0a62547124bab9c6507459.tar.bz2 gsoc2013-evolution-8d2d08837d5e8969db0a62547124bab9c6507459.tar.lz gsoc2013-evolution-8d2d08837d5e8969db0a62547124bab9c6507459.tar.xz gsoc2013-evolution-8d2d08837d5e8969db0a62547124bab9c6507459.tar.zst gsoc2013-evolution-8d2d08837d5e8969db0a62547124bab9c6507459.zip |
Fixes #39735 and 40257
2003-04-15 JP Rosevear <jpr@ximian.com>
Fixes #39735 and 40257
* gui/gnome-cal.c: convert float pane positions to ints
(setup_widgets): set the initial position after realization and
track the drags to get the new position, pack the panes slightly
differently
(gnome_calendar_set_pane_positions): set purely pixel oriented
positions
(gnome_calendar_update_config_settings): no need to update quanta
setting
(gnome_calendar_hpane_realized): realization callback
(gnome_calendar_vpane_realized): ditto
(gnome_calendar_vpane_resized): resize callback, store new size
(gnome_calendar_hpane_resized): ditto
* gui/calendar-model.c (get_due_status): handle an error getting
the timezone
* gui/calendar-config.c (calendar_config_get_hpane_pos): return an
int
(calendar_config_set_hpane_pos): take an int
(calendar_config_get_vpane_pos): return an int
(calendar_config_set_vpane_pos): take an int
* gui/calendar-config.h: update protos
* gui/apps_evolution_calendar.schemas: update defaults for pane
positions
svn path=/trunk/; revision=20863
Diffstat (limited to 'calendar/gui/apps_evolution_calendar.schemas')
-rw-r--r-- | calendar/gui/apps_evolution_calendar.schemas | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/calendar/gui/apps_evolution_calendar.schemas b/calendar/gui/apps_evolution_calendar.schemas index 3e4aa24e7f..c9c04a9241 100644 --- a/calendar/gui/apps_evolution_calendar.schemas +++ b/calendar/gui/apps_evolution_calendar.schemas @@ -106,8 +106,8 @@ <key>/schemas/apps/evolution/calendar/display/hpane_position</key> <applyto>/apps/evolution/calendar/display/hpane_position</applyto> <owner>evolution-calendar</owner> - <type>float</type> - <default>1.0</default> + <type>int</type> + <default>400</default> <locale name="C"> <short>Position of the horizontal pane</short> </locale> @@ -117,8 +117,8 @@ <key>/schemas/apps/evolution/calendar/display/vpane_position</key> <applyto>/apps/evolution/calendar/display/vpane_position</applyto> <owner>evolution-calendar</owner> - <type>float</type> - <default>1.0</default> + <type>int</type> + <default>150</default> <locale name="C"> <short>Position of the vertical pane</short> </locale> @@ -128,8 +128,8 @@ <key>/schemas/apps/evolution/calendar/display/month_hpane_position</key> <applyto>/apps/evolution/calendar/display/month_hpane_position</applyto> <owner>evolution-calendar</owner> - <type>float</type> - <default>0.0</default> + <type>int</type> + <default>640</default> <locale name="C"> <short>Position of the horizontal pane in the month view</short> </locale> @@ -139,8 +139,8 @@ <key>/schemas/apps/evolution/calendar/display/month_vpane_position</key> <applyto>/apps/evolution/calendar/display/month_vpane_position</applyto> <owner>evolution-calendar</owner> - <type>float</type> - <default>1.0</default> + <type>int</type> + <default>150</default> <locale name="C"> <short>Position of the vertical pane in the month view</short> </locale> |