mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-25 09:48:09 +02:00
oops
This commit is contained in:
@@ -311,7 +311,7 @@ class TabBar: # {{{
|
|||||||
self.data_buffer_size = 0
|
self.data_buffer_size = 0
|
||||||
self.laid_out_once = False
|
self.laid_out_once = False
|
||||||
self.dirty = True
|
self.dirty = True
|
||||||
self.screen = s = Screen(None, 1, 10, 0, 0, self.cell_width, cell_height)
|
self.screen = s = Screen(None, 1, 10, 0, self.cell_width, cell_height)
|
||||||
s.color_profile.update_ansi_color_table(build_ansi_color_table(opts))
|
s.color_profile.update_ansi_color_table(build_ansi_color_table(opts))
|
||||||
s.color_profile.set_configured_colors(
|
s.color_profile.set_configured_colors(
|
||||||
color_as_int(opts.inactive_tab_foreground),
|
color_as_int(opts.inactive_tab_foreground),
|
||||||
|
|||||||
@@ -111,7 +111,7 @@ class Window:
|
|||||||
self.is_visible_in_layout = True
|
self.is_visible_in_layout = True
|
||||||
self.child, self.opts = child, opts
|
self.child, self.opts = child, opts
|
||||||
cell_width, cell_height = cell_size_for_window(self.os_window_id)
|
cell_width, cell_height = cell_size_for_window(self.os_window_id)
|
||||||
self.screen = Screen(self, 24, 80, opts.scrollback_lines, self.id, cell_width, cell_height)
|
self.screen = Screen(self, 24, 80, opts.scrollback_lines, cell_width, cell_height, self.id)
|
||||||
setup_colors(self.screen, opts)
|
setup_colors(self.screen, opts)
|
||||||
|
|
||||||
@property
|
@property
|
||||||
|
|||||||
Reference in New Issue
Block a user