Closed issue by matthew-yates on void-packages repository https://github.com/void-linux/void-packages/issues/43323 Description: ### Is this a new report? Yes ### System Info Void 6.1.21_1 x86_64 GenuineIntel uptodate rrFFF ### Package(s) Affected ReText-7.2.1_3 ### Does a report exist for this bug with the project's home (upstream) and/or another distro? _No response_ ### Expected behaviour ReText window should open. ### Actual behaviour Starting retext from the command line reveals an error in: /usr/lib/python3.11/site-packages/ReText/window.py It states an integer is expected in line 89, but a float is there instead. I edited line 89 from: self.splitter.setSizes([self.width() / 5, self.width() * 4 / 5]) to: self.splitter.setSizes([int(self.width() / 5), int(self.width() * 4 / 5)]) Not sure if that is the correct bug fix, but ReText opens as expected now after making that edit. ### Steps to reproduce 1. xbps-install ReText 2. Try to open ReText from a graphical menu and nothing happens.