diff options
author | Mike Newman <MikeGTN@src.gnome.org> | 2003-01-21 08:00:27 +0000 |
---|---|---|
committer | Mike Newman <MikeGTN@src.gnome.org> | 2003-01-21 08:00:27 +0000 |
commit | 818872f171108b910344b3d352c6f7d38e80fd97 (patch) | |
tree | ff7a47c2fb09b58a0f1cc0e6f5c936b9b94e1c00 /src | |
parent | New traditional Chinese translation. (diff) | |
download | zenity-818872f171108b910344b3d352c6f7d38e80fd97.tar.gz zenity-818872f171108b910344b3d352c6f7d38e80fd97.tar.bz2 zenity-818872f171108b910344b3d352c6f7d38e80fd97.zip |
Fixed a bug I introduced! Ensure that an editable --text-info dialog gets
a buffer associated with it, so we can get the output even when we don't
start out with a --filename.
Diffstat (limited to 'src')
-rw-r--r-- | src/text.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -64,8 +64,7 @@ zenity_text (ZenityData *data, ZenityTextData *text_data) text_buffer = gtk_text_buffer_new (NULL); text_view = glade_xml_get_widget (glade_dialog, "zenity_text_view"); - if (zenity_util_fill_file_buffer (text_buffer, text_data->uri)) - gtk_text_view_set_buffer (GTK_TEXT_VIEW (text_view), text_buffer); + gtk_text_view_set_buffer (GTK_TEXT_VIEW (text_view), text_buffer); gtk_text_view_set_editable (GTK_TEXT_VIEW(text_view), text_data->editable); if (text_data->editable) { zen_text_data->buffer = text_buffer; |