From 4cc1a1fd125a3152b678c8554d25612b00c79a55 Mon Sep 17 00:00:00 2001 From: supermerill Date: Tue, 2 Jul 2019 19:01:12 +0200 Subject: [PATCH] icon change to be more in-sync with the prusa ones. maybe should I change them from orange to blue? --- resources/icons/perimeters_shell.png | Bin 882 -> 0 bytes resources/icons/shell.svg | 116 +++++++++++++++++++++++++++ resources/icons/width.png | Bin 745 -> 0 bytes resources/icons/width.svg | 115 ++++++++++++++++++++++++++ src/libslic3r/PrintConfig.cpp | 2 +- src/slic3r/GUI/Tab.cpp | 4 +- 6 files changed, 234 insertions(+), 3 deletions(-) delete mode 100644 resources/icons/perimeters_shell.png create mode 100644 resources/icons/shell.svg delete mode 100644 resources/icons/width.png create mode 100644 resources/icons/width.svg diff --git a/resources/icons/perimeters_shell.png b/resources/icons/perimeters_shell.png deleted file mode 100644 index 4ab0be5c0555fc24491f1f2b527336e7cc1f495b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 882 zcmV-&1C9KNP)22J!iGZ=gMw!ErYO4*ZDN-dd$AYW7_vDWdohB>#tJtq?-?C0DN{Gb=pttvD(E8F zxjdfdyBDq7%Kcvc_pBJ;2Y@IHDM^Dqj7w4DvG)mGyY4GgRy87H-$i+Vc_?893!raWFb(Z>*%Bd?JMAV z$VJ`0u>NJE2gr@Y{rHs_g072>NCdg6iWC49ripes@H7dGhurAF z{Sp1^Z)RX}62L02Cwh49XNxCJnh$5r z5o4x|cjU_6FM-rw=vm`&)bsjP_p8Lt-vE$~$q$I(XUo9R! zVlXpPVch|P*t^f*w(a^8WQ|X<{C({~V8G(qWngoY&J!n1rlbnCbz0oL$KaCJ6bAZj z`q!&OW|nfK^@7FPT{`pfBnO6U=C6?~-K_H3cmf-anq06zu;-G^nw>gVc_jn=Hdp6M z0+@$T(1-MNrLncm;s-TPkvCRL<}6j1zDQy3Wt&yi8VlA+_Fu92W}yrLNDBphKq%+~ z03|tD@O-<)>a7~r6-o9D+T8Gt%HGR1w{6#1Soo;yE0DJVWQ>*7;t4QTRto^0)VU&X zp~GTTwZ@`im4E(~z=}$Z{`D&R25qkN%3A=k0N^>`nVFrICa!i}w7I291 z&RMDuz_MqhxG;rhHQHC + + +image/svg+xml \ No newline at end of file diff --git a/resources/icons/width.png b/resources/icons/width.png deleted file mode 100644 index c3b50cce3aeb06b45f08ed494b48a885835ade5b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 745 zcmVK~y-)ebQfOm30^g@X!0cXFGGPX>*%rx-ilqM1n+wOrq$j zD>GA(guIBT{1+kUjTd&&jT(&nR}ctM1Z5iCwEhV#Hgz~~GTB95>7h+&YIDnT&UW6n zi~SCyhR@~mJl`+R^ZkCK-v^p(*)Z+Etp=-eIdxIgjxTZJ`*L~9+I-&6m5L7+oQu$o zm$4R4ppumCW_pgybK+D*{WMP|Ni&Y3b!n1(G(0N$3Np6^c27(8Ef``S{{3W8OarB|juF70eAMoUf> zvhm&~Q#Mx00000NkvXXu0mjfD5Y6P diff --git a/resources/icons/width.svg b/resources/icons/width.svg new file mode 100644 index 000000000..5bdf6a68a --- /dev/null +++ b/resources/icons/width.svg @@ -0,0 +1,115 @@ + + + +image/svg+xml \ No newline at end of file diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index 0a4941c93..5b601f2b5 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -253,7 +253,7 @@ void PrintConfigDef::init_fff_params() def = this->add("brim_ears_max_angle", coFloat); def->label = L("max angle"); - def->tooltip = L("Maximum angle to let a brim ear appear."); + def->tooltip = L("Maximum angle to let a brim ear appear. \nIf set to 0, no brim will be created. \nIf set to ~178, brim will be created on everything but strait sections."); def->sidetext = L("°"); def->min = 0; def->max = 180; diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp index d9990f417..f4127cd37 100644 --- a/src/slic3r/GUI/Tab.cpp +++ b/src/slic3r/GUI/Tab.cpp @@ -1002,7 +1002,7 @@ void TabPrint::build() m_presets = &m_preset_bundle->prints; Line line{ "", "" }; load_initial_data(); - auto page = add_options_page(_(L("Perimeters & shell")), "perimeters_shell.png"); + auto page = add_options_page(_(L("Perimeters & shell")), "shell"); auto optgroup = page->new_optgroup(_(L("Vertical shells"))); optgroup->append_single_option_line("perimeters"); @@ -1196,7 +1196,7 @@ void TabPrint::build() optgroup->append_single_option_line("max_volumetric_extrusion_rate_slope_negative"); #endif /* HAS_PRESSURE_EQUALIZER */ - page = add_options_page(_(L("Width & flow")), "width.png"); + page = add_options_page(_(L("Width & flow")), "width"); optgroup = page->new_optgroup(_(L("Extrusion width"))); optgroup->append_single_option_line("extrusion_width"); optgroup->append_single_option_line("first_layer_extrusion_width");