We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76b5883 commit dfc2335Copy full SHA for dfc2335
imgui.ini
@@ -14,7 +14,7 @@ Size=640.0,688.0
14
Collapsed=0
15
16
[Debug##Default]
17
-Pos=234,119
+Pos=60,60
18
Size=400.0,400.0
19
20
src/main/kotlin/imgui/draw.kt
@@ -190,7 +190,7 @@ class DrawList {
190
191
fun addRectFilled(a: Vec2, b: Vec2, col: Int, rounding: Float = 0f, roundingCornersFlags: Int = 0xffffffff.i) {
192
if (col hasnt COL32_A_MASK) return
193
- if (rounding > 0.0f) {
+ if (rounding > 0f) {
194
pathRect(a, b, rounding, roundingCornersFlags)
195
pathFillConvex(col)
196
} else {
src/main/kotlin/imgui/imgui/styles.kt
@@ -21,9 +21,9 @@ interface imgui_styles {
21
Vec4(0.80f, 0.80f, 0.80f, 0.30f), // Background of checkbox, radio button, plot, slider, text input
22
Vec4(0.90f, 0.80f, 0.80f, 0.40f),
23
Vec4(0.90f, 0.65f, 0.65f, 0.45f),
24
- Vec4(0.27f, 0.27f, 0.54f, 0.83f),
25
- Vec4(0.40f, 0.40f, 0.80f, 0.20f),
26
- Vec4(0.32f, 0.32f, 0.63f, 0.87f),
+ Vec4(0.27f, 0.27f, 0.54f, 0.83f), // TitleBg
+ Vec4(0.32f, 0.32f, 0.63f, 0.87f), // TitleBgActive
+ Vec4(0.40f, 0.40f, 0.80f, 0.20f), // TitleBgCollapsed
27
Vec4(0.40f, 0.40f, 0.55f, 0.80f),
28
Vec4(0.20f, 0.25f, 0.30f, 0.60f),
29
Vec4(0.40f, 0.40f, 0.80f, 0.30f),
0 commit comments