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

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuSanka <yusanka@gmail.com>2020-02-10 22:05:20 +0300
committerYuSanka <yusanka@gmail.com>2020-02-10 22:13:48 +0300
commit94d3ca70163cb47f11e96d9d9758dcb0a2ccdedf (patch)
tree3d91ba3cb78d7bf9752bf7c6cc87497f8169b6b8 /src/slic3r/GUI/Tab.cpp
parentcd886435587e23ec0810530e6b9c645c5f50f98a (diff)
Manually merged Korean translation by @ulsanether
+ updated MO for Korean translation + set small size for mode icons
Diffstat (limited to 'src/slic3r/GUI/Tab.cpp')
-rw-r--r--src/slic3r/GUI/Tab.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp
index 83dc21cec..92132956b 100644
--- a/src/slic3r/GUI/Tab.cpp
+++ b/src/slic3r/GUI/Tab.cpp
@@ -257,10 +257,9 @@ void Tab::create_preset_tab()
// Fill cache for mode bitmaps
m_mode_bitmap_cache.reserve(3);
- int icon_px = 14;
- m_mode_bitmap_cache.push_back(ScalableBitmap(this, "mode_simple" , icon_px));
- m_mode_bitmap_cache.push_back(ScalableBitmap(this, "mode_advanced", icon_px));
- m_mode_bitmap_cache.push_back(ScalableBitmap(this, "mode_expert" , icon_px));
+ m_mode_bitmap_cache.push_back(ScalableBitmap(this, "mode_simple" , mode_icon_px_size()));
+ m_mode_bitmap_cache.push_back(ScalableBitmap(this, "mode_advanced", mode_icon_px_size()));
+ m_mode_bitmap_cache.push_back(ScalableBitmap(this, "mode_expert" , mode_icon_px_size()));
// Initialize the DynamicPrintConfig by default keys/values.
build();