Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuSanka <yusanka@gmail.com>2018-04-26 13:40:17 +0300
committerYuSanka <yusanka@gmail.com>2018-04-26 13:40:17 +0300
commitb3859c49c1346d89c7a7e3d3ca12add6e34cb51c (patch)
tree04dc3aa6a434c1ee2f54906a4ad22a5437c8b299 /xs/src/slic3r/GUI/GUI.cpp
parent91db0a6e05374944a5903287d9b4b25406f8f927 (diff)
Updated description preset line for each type of presets...
Disabled m_btn_delete_preset for default and system presets. Enabled update of the current preset if it was modified and selected again.
Diffstat (limited to 'xs/src/slic3r/GUI/GUI.cpp')
-rw-r--r--xs/src/slic3r/GUI/GUI.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/xs/src/slic3r/GUI/GUI.cpp b/xs/src/slic3r/GUI/GUI.cpp
index 06929085c..210f29670 100644
--- a/xs/src/slic3r/GUI/GUI.cpp
+++ b/xs/src/slic3r/GUI/GUI.cpp
@@ -201,8 +201,8 @@ static void init_label_colours()
{
auto luma = get_colour_approx_luma(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW));
if (luma >= 128) {
- g_color_label_modified = wxColour(253, 88, 0);
- g_color_label_sys = wxColour(26, 132, 57);
+ g_color_label_modified = wxColour(255, 108, 30);//wxColour(253, 88, 0);
+ g_color_label_sys = wxColour(19, 100, 44); //wxColour(26, 132, 57);
} else {
g_color_label_modified = wxColour(253, 111, 40);
g_color_label_sys = wxColour(115, 220, 103);