Avvie icon indicating copy to clipboard operation
Avvie copied to clipboard

Minimum window size

Open bordam opened this issue 2 years ago • 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?

bordam avatar May 05 '22 19:05 bordam

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

fastrizwaan avatar Aug 08 '22 13:08 fastrizwaan

OK, fix committed.

Taiko2k avatar Aug 08 '22 20:08 Taiko2k