Taiko2k / Avvie

A GTK app for quick image cropping :flower_playing_cards:
GNU General Public License v3.0
159 stars 19 forks source link

Minimum window size #32

Open bordam opened 2 years ago

bordam commented 2 years ago

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?

fastrizwaan commented 2 years ago

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

Taiko2k commented 2 years ago

OK, fix committed.