codz01

Results 14 comments of codz01

i'll post my theme here when finish my work . btw , you have a very skilled artist friend (benfiquet) , i think he can help with this .

here is mine ![imgui](https://cloud.githubusercontent.com/assets/10813427/19212009/54f23768-8d49-11e6-8928-42153d3e59b5.png) ``` ImGuiStyle& style = ImGui::GetStyle(); style.WindowRounding = 5.3f; style.FrameRounding = 2.3f; style.ScrollbarRounding = 0; style.Colors[ImGuiCol_Text] = ImVec4(0.90f, 0.90f, 0.90f, 0.90f); style.Colors[ImGuiCol_TextDisabled] = ImVec4(0.60f, 0.60f, 0.60f, 1.00f);...

gray theme ![imgui_gray](https://user-images.githubusercontent.com/10813427/37324591-f8ab736c-263e-11e8-948f-0f62f13db242.png) ``` ImVec4* colors = ImGui::GetStyle().Colors; ImGui::GetStyle().FramePadding = ImVec2(4.0f,2.0f); ImGui::GetStyle().ItemSpacing = ImVec2(8.0f,2.0f); ImGui::GetStyle().WindowRounding = 2.0f; ImGui::GetStyle().ChildRounding = 2.0f; ImGui::GetStyle().FrameRounding = 0.0f; ImGui::GetStyle().ScrollbarRounding = 0.0f; ImGui::GetStyle().GrabRounding = 1.0f; ImGui::GetStyle().WindowBorderSize...

thanks , i download bgrabitmap and tryed open the project you mention ( fractal_tree ) , but i got lots of errors , do i need extra steps to compile...

i am using msegui 5.6.7 ![about](https://user-images.githubusercontent.com/10813427/173450059-2ed8ab54-e98f-4fc5-9350-2023e487b391.jpg)

Hi sorry for the delay , it was my mistake i forgot the -B switch , msegui should rebuild with class_bridge define it works fine now , thanks for the...

great news :D , it works perfectly on windows Note : for mingw users , you have to add : #define WINVER 0x0601 #define _WIN32_WINNT 0x0601 on top of include...

the dockspace's scrollbar is visible , is it normal ? ![gif](https://user-images.githubusercontent.com/10813427/46411352-dff1a480-c71b-11e8-9695-3a442a8e3602.gif)

thanks. its transparent by default i think , i just used the default settings