View Issue Details

IDProjectCategoryView StatusLast Update
0017343ScribusUser Interfacepublic2024-12-16 21:12
Reporternitramr Assigned Tonitramr  
PrioritynormalSeverityminorReproducibilityalways
Status closedResolutionfixed 
PlatformDesktop PCOSUbuntuOS Version24.10 64-bit
Product Version1.7.0.svn 
Target Version1.7.0Fixed in Version1.7.0.svn 
Summary0017343: Fixes: Selected frame color doesn't respect preferences + new icon colors
DescriptionThis patch contains 3 changes:
1. Fix for selected frame color from preferences
2. Modified snapping icons (replaced red magnet with black one)
3. New icon colors in CSS file
TagsNo tags attached.
PatchYes

Activities

nitramr

2024-12-15 23:00

developer  

color_2024-12-15_01.patch (1,741 bytes)   
Index: resources/iconsets/1_7_0/colors.css
===================================================================
--- resources/iconsets/1_7_0/colors.css	(Revision 26497)
+++ resources/iconsets/1_7_0/colors.css	(Arbeitskopie)
@@ -5,27 +5,27 @@
 
 /* Green */
 .onDark .success {
-    fill: #88CC7A;
+    fill: #00B90D;
 }
 
 /* Orange */
 .onDark .warning {
-    fill: #EDB45F;
+    fill: #FFB91C;
 }
 
 /* Red */
 .onDark .error {
-    fill: #FF7566;
+    fill: #FF6953;
 }
 
 /* Blue */
 .onDark.info {
-    fill: #75B6F0;
+    fill: #39A3F9;
 }
 
 /* Purple */
 .onDark .note {
-    fill: #B0A3F5;
+    fill: #C37CFF;
 }
 
 .onDark .gradient-shade {
@@ -34,27 +34,27 @@
 
 /* Green */
 .success {
-    fill: #49A537;
+    fill: #009200;
 }
 
 /* Orange */
 .warning {
-    fill: #D6922B;
+    fill: #EE9800;
 }
 
 /* Red */
 .error {
-    fill: #E55545;
+    fill: #E93725;
 }
 
 /* Blue */
 .info {
-    fill: #3384CC;
+    fill: #007BF1;
 }
 
 /* Purple */
 .note {
-    fill: #7666CC;
+    fill: #A64AFD;
 }
 
 .gradient-shade {
Index: scribus/canvasmode.cpp
===================================================================
--- scribus/canvasmode.cpp	(Revision 26497)
+++ scribus/canvasmode.cpp	(Arbeitskopie)
@@ -1730,7 +1730,7 @@
 	Text Control Characters = prefsData->displayPrefs.controlCharColor; // brown
 	*/
 
-	m_color["frame-selection"]	= QColor(230, 71, 51);//PrefsManager::instance().appPrefs.displayPrefs.frameColor;
+	m_color["frame-selection"]	= PrefsManager::instance().appPrefs.displayPrefs.frameColor;
 	m_color["frame-group"]		= PrefsManager::instance().appPrefs.displayPrefs.frameGroupColor;
 	m_color["frame"]			= PrefsManager::instance().appPrefs.displayPrefs.frameNormColor;
 	m_color["frame-move"]		= Qt::gray;
color_2024-12-15_01.patch (1,741 bytes)   
icons.zip (1,871 bytes)

Issue History

Date Modified Username Field Change
2024-12-15 23:00 nitramr New Issue
2024-12-15 23:00 nitramr File Added: color_2024-12-15_01.patch
2024-12-15 23:00 nitramr File Added: icons.zip
2024-12-16 06:06 cbradney Assigned To => nitramr
2024-12-16 06:06 cbradney Status new => resolved
2024-12-16 06:06 cbradney Resolution open => fixed
2024-12-16 06:06 cbradney Fixed in Version => 1.7.0.svn
2024-12-16 21:12 cbradney Status resolved => closed