Fix measure gizmo "Copy to Clipboard" button icon for dark mode (#5230)

This commit is contained in:
yw4z 2024-05-02 15:09:35 +03:00 committed by GitHub
parent 004108b4b6
commit 91d7f07d8f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -201,14 +201,14 @@ namespace ImGui
const wchar_t BlockNotifErrorIcon = 0x0835;
const wchar_t ClipboardBtnDarkIcon = 0x0836;
const wchar_t PrevArrowBtnIcon = 0x0836;
const wchar_t PrevArrowHoverBtnIcon = 0x0837;
const wchar_t NextArrowBtnIcon = 0x0838;
const wchar_t NextArrowHoverBtnIcon = 0x0839;
const wchar_t OpenArrowIcon = 0x0840;
const wchar_t CollapseArrowIcon = 0x0841;
const wchar_t ExpandArrowIcon = 0x0842;
const wchar_t CompleteIcon = 0x0843;
const wchar_t PrevArrowBtnIcon = 0x0837;
const wchar_t PrevArrowHoverBtnIcon = 0x0838;
const wchar_t NextArrowBtnIcon = 0x0839;
const wchar_t NextArrowHoverBtnIcon = 0x0840;
const wchar_t OpenArrowIcon = 0x0841;
const wchar_t CollapseArrowIcon = 0x0842;
const wchar_t ExpandArrowIcon = 0x0843;
const wchar_t CompleteIcon = 0x0844;
// void MyFunction(const char* name, const MyMatrix44& v);
}