We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 976a0de commit c9665a4Copy full SHA for c9665a4
1 file changed
src/main/kotlin/com/lambda/gui/components/QuickSearch.kt
@@ -75,7 +75,13 @@ object QuickSearch {
75
override val breadcrumb = "Module"
76
77
override fun ImGuiBuilder.buildLayout() {
78
- with(ModuleEntry(module)) { buildLayout() }
+ with(ModuleEntry(module)) {
79
+ buildLayout {
80
+ withItemWidth(ImGui.getContentRegionAvailX()) {
81
+ buildLayout()
82
+ }
83
84
85
}
86
87
@@ -96,7 +102,13 @@ object QuickSearch {
96
102
override val breadcrumb: String by lazy { buildSettingBreadcrumb(configurable.name, setting) }
97
103
98
104
99
- with(setting) { buildLayout() }
105
+ with(setting) {
106
107
108
109
110
111
100
112
101
113
114
0 commit comments