diff options
author | raveit65 <[email protected]> | 2018-02-06 12:07:43 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-02-04 12:23:29 +0100 |
commit | 550b622cb7bff4a48ebdb3a8dbb01c1dba740bc2 (patch) | |
tree | 1ffc94cf5832f54f255ffbae5ef72ff115b4aeb6 /src/profile-editor.c | |
parent | d342a01ecea28d22afb3eeb3a6af4b4d25c49f0b (diff) | |
download | mate-terminal-550b622cb7bff4a48ebdb3a8dbb01c1dba740bc2.tar.bz2 mate-terminal-550b622cb7bff4a48ebdb3a8dbb01c1dba740bc2.tar.xz |
drop umtp suport
Fixes https://github.com/mate-desktop/mate-terminal/issues/104
This doesn't work with with gtk+-3 and newer vte versions.
With gnome-pty-helper gone, it's a no-op.
based on origin commit at
https://git.gnome.org/browse/gnome-terminal/commit/?id=d3aa520
https://bugzilla.gnome.org/show_bug.cgi?id=747046
Diffstat (limited to 'src/profile-editor.c')
-rw-r--r-- | src/profile-editor.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/profile-editor.c b/src/profile-editor.c index e3667eb..3b41ddd 100644 --- a/src/profile-editor.c +++ b/src/profile-editor.c @@ -309,10 +309,6 @@ profile_notify_sensitivity_cb (TerminalProfile *profile, SET_SENSITIVE ("login-shell-checkbutton", !terminal_profile_property_locked (profile, TERMINAL_PROFILE_LOGIN_SHELL)); - if (!prop_name || prop_name == I_(TERMINAL_PROFILE_UPDATE_RECORDS)) - SET_SENSITIVE ("update-records-checkbutton", - !terminal_profile_property_locked (profile, TERMINAL_PROFILE_UPDATE_RECORDS)); - if (!prop_name || prop_name == I_(TERMINAL_PROFILE_PALETTE)) { gboolean palette_locked = terminal_profile_property_locked (profile, TERMINAL_PROFILE_PALETTE); @@ -824,7 +820,6 @@ terminal_profile_edit (TerminalProfile *profile, CONNECT ("title-entry", TERMINAL_PROFILE_TITLE); CONNECT ("title-mode-combobox", TERMINAL_PROFILE_TITLE_MODE); CONNECT ("transparent-radiobutton", TERMINAL_PROFILE_BACKGROUND_TYPE); - CONNECT ("update-records-checkbutton", TERMINAL_PROFILE_UPDATE_RECORDS); CONNECT ("use-custom-command-checkbutton", TERMINAL_PROFILE_USE_CUSTOM_COMMAND); CONNECT ("use-custom-default-size-checkbutton", TERMINAL_PROFILE_USE_CUSTOM_DEFAULT_SIZE); CONNECT ("use-theme-colors-checkbutton", TERMINAL_PROFILE_USE_THEME_COLORS); |