-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix background/text color and typo #29
base: master
Are you sure you want to change the base?
Conversation
Thanks for the feedback. I think that the second behavior is the one that procman used to have (because the console is white by default according to the code) but is inconvenient when using dark themes - that look way nicer to be fair. The problem I faced is that when I tried to change the color of the terminal from the settings, the master branch wasn't allowing to do so, while I think it should be possible with this branch. If there is a way to set the console color as the one from the operating system by default, but also allowing it to change it if required, it would be ideal I think. What do you think? Regarding the Clear think, thanks for the clarification, I had no idea about that :) |
I have an issue on the appearance thing at #23. I think it should be possible but it's relatively low priority given that it's cosmetic and not functional. It should be possible to do it but I'd have to dig through exactly how to do it since I'm not really familiar with GTK. In terms of CSS formatting, so far I've only done it with GUI elements which attach to specific CSS which is predefined, see spot estop gui at https://github.com/ori-drs/spot_runtime_drs/blob/master/scripts/estop_gui.py#L47-L56. Maybe it's possible to set a CSS definition on each UI element but I haven't looked at that. |
Ok, no problem. I think I'll work locally with that fix since apart from that everything works fine with procman on my side. If I have some spare time I'll take another look and will update this PR. |
the color selector used to work (File--> Preferences). But it doesnt anymore That's the simplest solution. |
Hi @heuristicus , this tries to fix minor things:
_Clear
)override_background_color
andoverride_color
methods are also deprecated in favor of CSS-based formatting (I guess that's like Qt). However, I did a quick search I couldn't find a good example to implement it myself. Do you have any experience with this?