From bec161fa1abac0e438ab240b7356a19820c93d5f Mon Sep 17 00:00:00 2001 From: NoryiE Date: Sun, 2 Nov 2025 09:56:26 +0000 Subject: [PATCH] deploy: 7375c33bbb9780d2d271227ebb20749fdc2b3718 --- docs/references/elements/ComboBox.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/references/elements/ComboBox.md b/docs/references/elements/ComboBox.md index cec601f..715f483 100644 --- a/docs/references/elements/ComboBox.md +++ b/docs/references/elements/ComboBox.md @@ -16,7 +16,7 @@ local combo = main:addComboBox() {text = "Spain"}, {text = "Italy"} }) -:setPlaceholder("Select country...") +:setSelectedText("Select country...") -- Placeholder text :setAutoComplete(true) -- Enable filtering while typing -- Handle selection changes @@ -34,8 +34,6 @@ end) |text|string|""|The current text value of the input field| |cursorPos|number|1|Current cursor position in the text input| |viewOffset|number|0|Horizontal scroll position for viewing long text| -|placeholder|string|"..."|Text shown when the input is empty| -|placeholderColor|color|gray|Color used for placeholder text| |autoComplete|boolean|false|Enables filtering dropdown items while typing| |manuallyOpened|boolean|false|Indicates if dropdown was opened by user action|