CAVEATS file now word-wrapped in the Text area.

This commit is contained in:
natureh
2012-01-25 23:14:59 +01:00
parent cf9083bcbb
commit a159e295ce
2 changed files with 5 additions and 15 deletions

View File

@@ -171,6 +171,7 @@ Splash::Splash (Gtk::Window& parent) : Gtk::Dialog(M("GENERAL_ABOUT"), parent, t
caveatsSW = Gtk::manage (new Gtk::ScrolledWindow());
Gtk::TextView *caveatsTV = Gtk::manage (new Gtk::TextView (textBuffer));
caveatsTV->set_editable(false);
caveatsTV->set_wrap_mode(Gtk::WRAP_WORD);
caveatsSW->add(*caveatsTV);
nb->append_page (*caveatsSW, M("ABOUT_TAB_CAVEATS"));
}