Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adjust window size (or hide transcript window) #254

Open
al-yakubovich opened this issue Aug 26, 2024 · 1 comment
Open

Adjust window size (or hide transcript window) #254

al-yakubovich opened this issue Aug 26, 2024 · 1 comment

Comments

@al-yakubovich
Copy link

al-yakubovich commented Aug 26, 2024

Thank you for the awesome project!

Is it possible to hide the transcription window (1 on the screenshot) or resize the response window (2 on the screenshot)? The main motivation is that the response window is too small, and the transcription window is not always needed. Some shortcuts would help.

image

@mang0sw33t
Copy link
Collaborator

Best option in this case would be to make the window sizes adjustable so users can alter the sizes appropriate for the use case.
The transcription window and response windows are created in this method

def create_ui_components(self, config: dict):

I think altering the pack method call for the two windows will result in desired behavior

self.transcript_text.pack(side="left", fill="both", expand=True, padx=10, pady=10)


self.right_frame.pack(side="right", fill="both", expand=True, padx=10, pady=10)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants