mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-17 22:14:53 +02:00
title stack should be LIFO not FIFO
This commit is contained in:
@@ -419,7 +419,7 @@ class Window:
|
||||
if title:
|
||||
if pop:
|
||||
if self.title_stack:
|
||||
self.child_title = self.title_stack.popleft()
|
||||
self.child_title = self.title_stack.pop()
|
||||
self.title_updated()
|
||||
else:
|
||||
if self.child_title:
|
||||
|
||||
Reference in New Issue
Block a user