diff options
author | Chris Toshok <toshok@ximian.com> | 2003-01-28 00:55:07 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2003-01-28 00:55:07 +0800 |
commit | 7f14781b0e0d560fdca2b2e5fb06e3c3e2c24563 (patch) | |
tree | 709ca781ea5f9bf6eff1668d7cdeba00a5a91bc4 | |
parent | e7a3fedd24784bb62a7449fd155b9cc15833ddd3 (diff) | |
download | gsoc2013-evolution-7f14781b0e0d560fdca2b2e5fb06e3c3e2c24563.tar gsoc2013-evolution-7f14781b0e0d560fdca2b2e5fb06e3c3e2c24563.tar.gz gsoc2013-evolution-7f14781b0e0d560fdca2b2e5fb06e3c3e2c24563.tar.bz2 gsoc2013-evolution-7f14781b0e0d560fdca2b2e5fb06e3c3e2c24563.tar.lz gsoc2013-evolution-7f14781b0e0d560fdca2b2e5fb06e3c3e2c24563.tar.xz gsoc2013-evolution-7f14781b0e0d560fdca2b2e5fb06e3c3e2c24563.tar.zst gsoc2013-evolution-7f14781b0e0d560fdca2b2e5fb06e3c3e2c24563.zip |
add a scrolled window (SHADOW_IN) around the address textview.
2003-01-27 Chris Toshok <toshok@ximian.com>
* gui/contact-editor/contact-editor.glade: add a scrolled window
(SHADOW_IN) around the address textview.
svn path=/trunk/; revision=19649
-rw-r--r-- | addressbook/ChangeLog | 5 | ||||
-rw-r--r-- | addressbook/gui/contact-editor/contact-editor.glade | 61 |
2 files changed, 41 insertions, 25 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 3fd1513fb3..051295480b 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,8 @@ +2003-01-27 Chris Toshok <toshok@ximian.com> + + * gui/contact-editor/contact-editor.glade: add a scrolled window + (SHADOW_IN) around the address textview. + 2003-01-26 Chris Toshok <toshok@ximian.com> * gui/contact-editor/contact-editor.glade: rename the category diff --git a/addressbook/gui/contact-editor/contact-editor.glade b/addressbook/gui/contact-editor/contact-editor.glade index 1e79e46a0e..c574310f2b 100644 --- a/addressbook/gui/contact-editor/contact-editor.glade +++ b/addressbook/gui/contact-editor/contact-editor.glade @@ -421,31 +421,6 @@ </child> <child> - <widget class="GtkTextView" id="text-address"> - <property name="visible">True</property> - <property name="can_focus">True</property> - <property name="editable">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> - <packing> - <property name="left_attach">7</property> - <property name="right_attach">8</property> - <property name="top_attach">5</property> - <property name="bottom_attach">9</property> - <property name="y_options">fill</property> - </packing> - </child> - - <child> <widget class="GtkButton" id="button-fullname"> <property name="visible">True</property> <property name="can_focus">True</property> @@ -1424,6 +1399,42 @@ <property name="y_options">fill</property> </packing> </child> + + <child> + <widget class="GtkScrolledWindow" id="scrolledwindow3"> + <property name="visible">True</property> + <property name="can_focus">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="text-address"> + <property name="visible">True</property> + <property name="can_focus">True</property> + <property name="editable">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> + <packing> + <property name="left_attach">7</property> + <property name="right_attach">8</property> + <property name="top_attach">5</property> + <property name="bottom_attach">9</property> + <property name="y_options">fill</property> + </packing> + </child> </widget> <packing> <property name="tab_expand">False</property> |