Remove useless code

As far as I can tell, `.active_window` does absolutely nothing, so I
removed it.
This commit is contained in:
Luflosi 2019-06-05 16:53:29 +02:00
parent c9045788f5
commit 4783947135
No known key found for this signature in database
GPG Key ID: 14140F703B7D8362

View File

@ -757,10 +757,10 @@ def do_set_tab_title(self, title, tab_id):
def kitty_shell(self, window_type):
cmd = ['@', kitty_exe(), '@']
if window_type == 'tab':
self._new_tab(cmd).active_window
self._new_tab(cmd)
elif window_type == 'os_window':
os_window_id = self._new_os_window(cmd)
self.os_window_map[os_window_id].active_window
self.os_window_map[os_window_id]
elif window_type == 'overlay':
w = self.active_window
tab = self.active_tab