From 7dcf5629d74cae6c575ebd8e09106b720da72eb4 Mon Sep 17 00:00:00 2001 From: daboe01 Date: Sun, 15 Feb 2026 21:10:14 +0100 Subject: [PATCH] fixed: combobox issue when selecting an element in placeholder state --- AppKit/CPComboBox.j | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/AppKit/CPComboBox.j b/AppKit/CPComboBox.j index 8fa386fee..d5305b606 100644 --- a/AppKit/CPComboBox.j +++ b/AppKit/CPComboBox.j @@ -570,6 +570,13 @@ var CPComboBoxTextSubview = @"text", _selectedStringValue = selectedStringValue; [self setStringValue:_selectedStringValue]; + + [self _updatePlaceholderState]; + +#if PLATFORM(DOM) + [self _setCSSStyleForInputElement]; +#endif + [self _reverseSetBinding]; return YES;