Add some warning text in the profile editor

This commit is contained in:
Chris Jones 2009-05-12 21:17:56 +01:00
parent 7010d17b73
commit b1d10e8817
1 changed files with 6 additions and 0 deletions

View File

@ -60,6 +60,11 @@ class ProfileEditor:
self.window = gtk.Window ()
self.notebook = gtk.Notebook()
self.box = gtk.VBox()
self.warning = gtk.Label()
self.warning.set_use_markup (True)
self.warning.set_line_wrap (True)
self.warning.set_markup ("<i><b>NOTE:</b> These settings will not be saved. See:</i> <tt>man terminator_config</tt>")
self.butbox = gtk.HButtonBox()
self.applybut = gtk.Button(stock=gtk.STOCK_APPLY)
@ -67,6 +72,7 @@ class ProfileEditor:
self.cancelbut = gtk.Button(stock=gtk.STOCK_CLOSE)
self.cancelbut.connect ("clicked", self.cancel)
self.box.pack_start(self.warning, False, False)
self.box.pack_start(self.notebook, False, False)
self.box.pack_end(self.butbox, False, False)