Skip to content

Commit

Permalink
feat: show cwd in subtitle
Browse files Browse the repository at this point in the history
  • Loading branch information
ImGajeed76 committed Nov 17, 2024
1 parent f522e09 commit f509161
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/lib/interface_viewer.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import re
import sys
from pathlib import Path
from typing import Callable, Coroutine, Iterable, List, Union

from textual import on
Expand Down Expand Up @@ -100,6 +101,7 @@ class InterfaceViewer(App):

def __init__(self, title: str, references: List[InterfaceReference]):
self.TITLE = title
self.SUB_TITLE = str(Path.cwd())
super().__init__()
self.references = references

Expand Down

0 comments on commit f509161

Please sign in to comment.