diff --git a/terminatorlib/prefs_profile.py b/terminatorlib/prefs_profile.py index 1e9442ca..61048fe4 100644 --- a/terminatorlib/prefs_profile.py +++ b/terminatorlib/prefs_profile.py @@ -1,12 +1,14 @@ #!/usr/bin/python -from terminatorlib.util import dbg,err -from terminatorlib.config import DEFAULTS,TerminatorConfValuestoreRC -from terminatorlib.keybindings import TerminatorKeybindings, KeymapError -from terminatorlib.version import APP_NAME, APP_VERSION -from terminatorlib import translation +import gtk +import gobject + +from util import dbg, err +import config +from keybindings import Keybindings +from version import APP_NAME, APP_VERSION +from translation import _ -import gtk, gobject class ProfileEditor: # lists of which settings to put in which tabs @@ -67,11 +69,6 @@ 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 ("NOTE: These settings will not be saved. See: man terminator_config") self.butbox = gtk.HButtonBox() self.applybut = gtk.Button(stock=gtk.STOCK_APPLY)