Taiko2k/Avvie

Minimum window size

bordam opened this issue · 2 comments

I'm currently able to reduce the window size at will regardless of whatever file I've opened. The only limitation is the topbar content (horizontally).
Screenshot from 2022-05-05 21-25-34

Maybe there should be a limit to the window size based on the image opened and/or previews?

set the minimim size 100x300 by putting this line below https://github.com/Taiko2k/Avvie/blob/master/src/main.py#L1018

self.win.set_size_request(100,300)

taken from my VocabularyBuilder GTK3 app https://github.com/fastrizwaan/VocabularyBuilder

OK, fix committed.