GUI is not working...
See original GitHub issueUsing (testing) v1.1.5 Using on Ubuntu 20.04
From the GUI
Still seeing this issue
Debugging this with the command line given here it is working.
Maybe the issue is with the flag Open spreadsheet
So, if I unmark this checkbox, the whole gui hangs.
A 3rd test gave this… BOM file: board.csv Reconigzed EDAs: CSV file Open spreadsheet unmarked
[3] 76634 segmentation fault (core dumped) kicost
Issue Analytics
- State:
- Created 3 years ago
- Comments:8 (3 by maintainers)
Top Results From Across the Web
Problem launching graphical user interface (GUI) applications
Resolving the problem · If the user is not authorized to use the X Window session: Log out of the system. Log on...
Read more >GUI does not start - Ask Ubuntu
10 Answers 10 · Press Ctrl Alt F7 · Press Alt F2 · Log in via terminal · Go to /etc/X11 and delete...
Read more >GUI not shows properly in Windows 10 Pro.
1. Open "File Explorer" · 2. Click on "This PC" · 3. Right click on "C:" · 4. Click on "Proprieties" · 5....
Read more >K46055636: Device GUI is not loading / CLI working fine - AskF5
Support Solution. You may not be able to access the Configuration Utility (GUI) if you have recently updated the Device Certificate and Key. ......
Read more >Fixing a Broken Ubuntu GUI. Lessons learned from bad driver…
If your driver Installation failed and GUI broke down. If your GUI hung up for some reason, or the process didn't finish successfully,...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Ok, I believe a few issues are conflated here (especially since #421 was marked as a duplicate). I think I have an idea what’s going on.
… which is exactly what happens. The error messages even tell what the problem is (“wxEXPAND flag will be overridden by alignment flags”). The solution is to either remove the wx.EXPAND flag or the alignment flags, depending on what the intent here is. Getting the GUI to start required a modification in kicost_gui.py of lines 367, 384 and 449. I’m not sending a pull request since I don’t know what the GUI is supposed to look like and hence which of the conflicting flags should be removed.
self.m_gauge_process.SetValue(0)
(and lots of other GUI manipulation). This causes breakage. See eg. this thread. Hacking button_run() to just call self.run() instead of starting a thread fixes this for me.Hi @hildogjr !
If you incorporate the flake8 patch first (which I strongly recommend) the #451 becomes: