Stylesheet fixes part IV - A new hope (to be done for 1.0) (#15586)
* Qcolor dialog fixes * Fix for white hoover on tabbar * Changes active color and selected feature color * update same colors in cfg * fix for tab pan in material editor * some fixes mostly theme accent colors fixes. * fixed text edit being cut off https://github.com/FreeCAD/FreeCAD/issues/15603 * extend arrow fix https://github.com/FreeCAD/FreeCAD/issues/15616 * checkboxes links qpushbuttons etc. Fixed https://github.com/FreeCAD/FreeCAD/issues/15610#event-13642470770 and hopefully also https://github.com/FreeCAD/FreeCAD/issues/15136#issuecomment-2254156398 * fixed selection-text color in the preference menu also White is white. * forgot checkbox spacing for light * colors update fix for https://github.com/FreeCAD/FreeCAD/issues/15660#event-13670498420 and https://github.com/FreeCAD/FreeCAD/issues/15620#issuecomment-2251144435 * Delete CMakeSettings.json * get out of here * title a tat higher * change rubberband from white to blue to make it work with white background. * setting the colors. * tree colors
This commit is contained in:
@@ -3795,7 +3795,7 @@ void DocumentItem::slotInEdit(const Gui::ViewProviderDocumentObject& v)
|
||||
|
||||
ParameterGrp::handle hGrp = App::GetApplication().GetParameterGroupByPath(
|
||||
"User parameter:BaseApp/Preferences/TreeView");
|
||||
unsigned long col = hGrp->GetUnsigned("TreeEditColor", 4294902015);
|
||||
unsigned long col = hGrp->GetUnsigned("TreeEditColor", 563609599);
|
||||
QColor color(App::Color::fromPackedRGB<QColor>(col));
|
||||
|
||||
if (!getTree()->editingItem) {
|
||||
@@ -5238,7 +5238,7 @@ void DocumentObjectItem::setHighlight(bool set, Gui::HighlightMode high) {
|
||||
f.setUnderline(underlined);
|
||||
f.setOverline(overlined);
|
||||
|
||||
unsigned long col = hGrp->GetUnsigned("TreeActiveColor", 3873898495);
|
||||
unsigned long col = hGrp->GetUnsigned("TreeActiveColor", 1538528255);
|
||||
color = App::Color::fromPackedRGB<QColor>(col);
|
||||
}
|
||||
else {
|
||||
|
||||
Reference in New Issue
Block a user