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
path: root/src/imgui
diff options
context:
space:
mode:
authorYuSanka <yusanka@gmail.com>2020-05-06 21:45:57 +0300
committerYuSanka <yusanka@gmail.com>2020-05-06 21:51:50 +0300
commita94c952b40d36b1505fb77b87c0dd739e1034659 (patch)
treec6b6828c173a930377b16229a529e9fcdae16cae /src/imgui
parentb73e675aaab26f1187c331c4bd11ad735b9741f0 (diff)
Search:
1. To the imGui Dialog added icons instead of settings type 2. Fixed a search trough the options with # symbol in opt_key 3. Deleted "Type" checkbox from the Search Windows and added "Search in English" checkbox (but without implementation for this moment) Layouts: 1. Fixed a visibility of the "Switch to Settings" toolbar icon for the old layout mode
Diffstat (limited to 'src/imgui')
-rw-r--r--src/imgui/imconfig.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/imgui/imconfig.h b/src/imgui/imconfig.h
index c425bbef2..eb47459ea 100644
--- a/src/imgui/imconfig.h
+++ b/src/imgui/imconfig.h
@@ -107,6 +107,13 @@ namespace ImGui
const char ColorMarkerStart = 0x2; // STX
const char ColorMarkerEnd = 0x3; // ETX
+ // Special ASCII characters are used here as a ikons markers
+ const char PrintIconMarker = 0x4;
+ const char PrinterIconMarker = 0x5;
+ const char PrinterSlaIconMarker = 0x6;
+ const char FilamentIconMarker = 0x7;
+ const char MaterialIconMarker = 0x8;
+
// void MyFunction(const char* name, const MyMatrix44& v);
}