diff options
author | Chenthill Palanisamy <pchen@src.gnome.org> | 2005-11-17 14:15:43 +0800 |
---|---|---|
committer | Chenthill Palanisamy <pchen@src.gnome.org> | 2005-11-17 14:15:43 +0800 |
commit | 11fdf8846ed9d246471ee003ab2da133922db40c (patch) | |
tree | 3d438d6e03b88fe1143d402515a93de1e3ff9d0a /calendar/gui/alarm-notify/alarm-notify.glade | |
parent | 577b578fd4c13e30ed61b503cb9a9b39da4753b0 (diff) | |
download | gsoc2013-evolution-11fdf8846ed9d246471ee003ab2da133922db40c.tar gsoc2013-evolution-11fdf8846ed9d246471ee003ab2da133922db40c.tar.gz gsoc2013-evolution-11fdf8846ed9d246471ee003ab2da133922db40c.tar.bz2 gsoc2013-evolution-11fdf8846ed9d246471ee003ab2da133922db40c.tar.lz gsoc2013-evolution-11fdf8846ed9d246471ee003ab2da133922db40c.tar.xz gsoc2013-evolution-11fdf8846ed9d246471ee003ab2da133922db40c.tar.zst gsoc2013-evolution-11fdf8846ed9d246471ee003ab2da133922db40c.zip |
changes are made in alarm-notify.glade and alarm-notify-dialog.c to make sure
that the description part of the alarm dialog comes in a scroll window and
thus fixing #314550
svn path=/trunk/; revision=30632
Diffstat (limited to 'calendar/gui/alarm-notify/alarm-notify.glade')
-rw-r--r-- | calendar/gui/alarm-notify/alarm-notify.glade | 52 |
1 files changed, 27 insertions, 25 deletions
diff --git a/calendar/gui/alarm-notify/alarm-notify.glade b/calendar/gui/alarm-notify/alarm-notify.glade index a258714bb9..97bdea1f45 100644 --- a/calendar/gui/alarm-notify/alarm-notify.glade +++ b/calendar/gui/alarm-notify/alarm-notify.glade @@ -126,32 +126,34 @@ <property name="homogeneous">False</property> <property name="spacing">12</property> - <child> - <widget class="GtkLabel" id="description-label"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="label" translatable="yes">description of appointment</property> - <property name="use_underline">False</property> - <property name="use_markup">True</property> - <property name="justify">GTK_JUSTIFY_LEFT</property> - <property name="wrap">True</property> - <property name="selectable">True</property> - <property name="xalign">0</property> - <property name="yalign">0.5</property> - <property name="xpad">0</property> - <property name="ypad">0</property> - <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property> - <property name="width_chars">-1</property> - <property name="single_line_mode">False</property> - <property name="angle">0</property> - </widget> - <packing> - <property name="padding">0</property> - <property name="expand">False</property> - <property name="fill">False</property> - </packing> + <child> + <widget class="GtkScrolledWindow" id="description"> + <property name="visible">True</property> + <property name="hscrollbar_policy">GTK_POLICY_AUTOMATIC</property> + <property name="vscrollbar_policy">GTK_POLICY_AUTOMATIC</property> + <property name="shadow_type">GTK_SHADOW_IN</property> + <property name="window_placement">GTK_CORNER_TOP_LEFT</property> + <child> + <widget class="GtkTextView" id="description-label"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="editable">False</property> + <property name="overwrite">False</property> + <property name="accepts_tab">True</property> + <property name="justification">GTK_JUSTIFY_LEFT</property> + <property name="wrap_mode">GTK_WRAP_WORD</property> + <property name="cursor_visible">True</property> + <property name="pixels_above_lines">0</property> + <property name="pixels_below_lines">0</property> + <property name="pixels_inside_wrap">0</property> + <property name="left_margin">0</property> + <property name="right_margin">0</property> + <property name="indent">0</property> + <property name="text" translatable="yes"></property> + </widget> + </child> + </widget> </child> - <child> <widget class="GtkTable" id="table1"> <property name="visible">True</property> |