diff options
author | Federico Mena Quintero <federico@nuclecu.unam.mx> | 1998-04-16 13:18:12 +0800 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 1998-04-16 13:18:12 +0800 |
commit | 71df66748854651aff14970a29fe239f55361e75 (patch) | |
tree | fece96e78117471100989700fcc59cbdfc87d0fa /calendar/gui/gncal-full-day.c | |
parent | 8a6f65830092a2dec14005dc5712ee1ef54598a7 (diff) | |
download | gsoc2013-evolution-71df66748854651aff14970a29fe239f55361e75.tar gsoc2013-evolution-71df66748854651aff14970a29fe239f55361e75.tar.gz gsoc2013-evolution-71df66748854651aff14970a29fe239f55361e75.tar.bz2 gsoc2013-evolution-71df66748854651aff14970a29fe239f55361e75.tar.lz gsoc2013-evolution-71df66748854651aff14970a29fe239f55361e75.tar.xz gsoc2013-evolution-71df66748854651aff14970a29fe239f55361e75.tar.zst gsoc2013-evolution-71df66748854651aff14970a29fe239f55361e75.zip |
XPM files for events with alarm and recurrence, respectively.
1998-04-16 Federico Mena Quintero <federico@nuclecu.unam.mx>
* bell.xpm recur.xpm: XPM files for events with alarm and
recurrence, respectively.
1998-04-15 Federico Mena Quintero <federico@nuclecu.unam.mx>
* gncal-full-day.c (button_1): Preserve the up/down cursor while dragging.
svn path=/trunk/; revision=143
Diffstat (limited to 'calendar/gui/gncal-full-day.c')
-rw-r--r-- | calendar/gui/gncal-full-day.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/calendar/gui/gncal-full-day.c b/calendar/gui/gncal-full-day.c index 6d95a79d41..67756d0482 100644 --- a/calendar/gui/gncal-full-day.c +++ b/calendar/gui/gncal-full-day.c @@ -16,7 +16,7 @@ #define TEXT_BORDER 2 #define HANDLE_SIZE 8 -#define MIN_WIDTH 200 +#define MIN_WIDTH 300 #define XOR_RECT_WIDTH 2 #define UNSELECT_TIMEOUT 150 /* ms */ @@ -1413,7 +1413,7 @@ button_1 (GncalFullDay *fullday, GdkEventButton *event) | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_RELEASE_MASK), NULL, - NULL, + fullday->up_down_cursor, event->time); if (old_rows_used == 0) { @@ -1460,7 +1460,7 @@ button_1 (GncalFullDay *fullday, GdkEventButton *event) | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_RELEASE_MASK), NULL, - NULL, + fullday->up_down_cursor, event->time); draw_xor_rect (fullday); |