-
Notifications
You must be signed in to change notification settings - Fork 12
bug-fix-missing horizontal scroll bar at the preview data and app bre… #22
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
base: feature/new-gui
Are you sure you want to change the base?
Conversation
…aks after first analysis run.
NKeleher
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Works great for me! A few comments to attend to before merging. Thanks for you work on this @Ebenezer5542!
| content=preview_table, | ||
| content=ft.Row( | ||
| controls=[preview_table], | ||
| scroll=ft.ScrollMode.AUTO, # I added this to enable horizontal scroll |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🎉 Thanks for adding the horizontal scroll! Works great for me. Could you remove the comment?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed
| padding=8, | ||
| border_radius=4, | ||
| ), | ||
| # ft.Container( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
⭐ ⭐ If we no longer need this container, please delete the code for easier code maintenance.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code deleted
|
|
||
| def on_screen_enter(self): | ||
| """Enter this screen and reset analysis state.""" | ||
| print("DEBUG: on_screen_enter() called") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
⭐ remove, or comment out, the DEBUG print statements before merging.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Debug line commented out

Added horizontal scrollbar to Results screen
The data preview table previously had no horizontal scrollbar, causing wide datasets to appear misaligned and difficult to read. I added a horizontal scrollbar so wider data now displays cleanly.
Fixed logic issue on Progress screen
There was a bug where, after completing the first analysis run, the app required a restart before running again.
I resolved this by resetting the analysis_complete flag to False inside on_state_changed, ensuring the flags properly resets between runs.