浏览代码

Made radio button render ascii when logged into tty/file/clipboard

ocornut 11 年之前
父节点
当前提交
ad42787543
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      imgui.cpp

+ 2 - 0
imgui.cpp

@@ -3687,6 +3687,8 @@ bool RadioButton(const char* label, bool active)
         window->DrawList->AddCircle(center, radius, window->Color(ImGuiCol_Border), 16);
     }
 
+    if (g.LogEnabled)
+        LogText(text_bb.GetTL(), active ? "(x)" : "( )");
     RenderText(text_bb.GetTL(), label);
 
     return pressed;