View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0017343 | Scribus | User Interface | public | 2024-12-15 23:00 | 2024-12-16 21:12 |
Reporter | nitramr | Assigned To | nitramr | ||
Priority | normal | Severity | minor | Reproducibility | always |
Status | closed | Resolution | fixed | ||
Platform | Desktop PC | OS | Ubuntu | OS Version | 24.10 64-bit |
Product Version | 1.7.0.svn | ||||
Target Version | 1.7.0 | Fixed in Version | 1.7.0.svn | ||
Summary | 0017343: Fixes: Selected frame color doesn't respect preferences + new icon colors | ||||
Description | This 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 | ||||
Tags | No tags attached. | ||||
Patch | Yes | ||||
|
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; |
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 |