Elliot Garbus
Elliot Garbus
@Julian-O The error messages in the log will only occur if the path in the FileChooser is set to the root (C:) directory in Windows. Set it to any other...
Interesting perspective. The core issue for me was the "incompatible change" to moving all of the data files to the _internal dir. The addition of the contents_dir in the specfile...
I added the following code: ```python p = Path(__file__).parent os.chdir(p) ``` This allowed the program to run the same bundled and unbundled. Do you have a different recommendation? The need...
@rokm Yes, my code is using relative paths. This is for single dir builds only. Lets assume a data file located in the same dir as the executable. In the...
Isn't this a function of what is being built? A command line utility vs a GUI app shipped in a Windows Installer or a Mac App bundle? i agree with...
Is it happenstance or convention that working directory is set to the executable by the launcher? Should I be concerned that this could change? I hear you from this discussion,...
Thank you for sharing your thoughts and insights.
I don't have any plans to do an update. I'll leave this issue open if I have some free time, I could add it. Are you on Windows or Mac?
If you look at the tabbed_panel_showcase.py example, you can see how custom tabs can be rotated using a scatter. https://github.com/kivy/kivy/blob/master/examples/widgets/tabbed_panel_showcase.py
Put the two buttons in a BoxLayout, put the BoxLayout in the AnchorLayout. Ask in one of the support forums and I’ll show you an example.