codz01
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  ``` 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  ``` 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 
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 ? 
thanks. its transparent by default i think , i just used the default settings
thanks , i'll try as you suggested