You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
LongDelay("Long Delay", "Show tooltip after a longer delay (~0.40s), and only after the mouse has been still briefly on the item.", ImGuiHoveredFlags.DelayNormal)
59
62
}
60
63
61
-
62
64
// General
63
65
val alpha by setting("Alpha", 1.0f, 0.0f..1.0f, 0.01f).group(Group.General)
64
66
val disabledAlpha by setting("Disabled Alpha", 0.6f, 0.0f..1.0f, 0.01f).group(Group.General)
65
67
val tooltipType by setting("Tooltip Type", TooltipType.Stationary, description ="When to show the tooltip.").group(Group.General)
68
+
val setLambdaWindowIcon by setting("Set Lambda Window Icon", true).group(Group.General).onValueChange { _, to ->
69
+
if (to) {
70
+
setLambdaWindowIcon()
71
+
} else {
72
+
val icon =if (SharedConstants.getGameVersion().isStable) Icons.RELEASEelseIcons.SNAPSHOT
73
+
mc.window.setIcon(mc.defaultResourcePack, icon)
74
+
}
75
+
}
76
+
val setLambdaWindowTitle by setting("Set Lambda Window Title", true).group(Group.General)
66
77
67
78
// Sizing
68
79
val windowPaddingX by setting("Window Padding X", 8.0f, 0.0f..20.0f, 0.1f).group(Group.Sizing)
0 commit comments