Finn
Finn
@ChrisKnott So I went ahead and created my own electron app (without eel). Then, I put gui.py in that folder: ``` import eel options = { 'mode': 'custom', 'args': ['C:/Users/x/PycharmProjects/adidas/gui']...
@ChrisKnott OK so I found the electron exe file. Now my gui.py file looks like this: ``` import eel options = { 'mode': 'custom', 'args': ['C:/Users/x/PycharmProjects/adidas/gui/node_modules/electron/dist/electron.exe', '.'] } eel.init('html') eel.start('index.html',...
Also, closing the app doesn't end the python script.
Fixed. I put the html, css, js and images folders in a folder called web, then I did `eel.init('web)` and `eel.start('html/index.html')`. Works great now except for the issue with the...
@ChrisKnott I'll test that in a bit bit right now I'm having another problem. I added a custom title bar and close/minimise buttons which works absolutely fine when I run...
@ChrisKnott I tried it a few hours after and it just worked... Strange. Also I got the closing to work properly, thanks. I even made a custom title bar in...
It seems like the issue was caused by electron's caching which can be cleared by going to C:\Users\\AppData\Roaming\\Cache and deleting the files.