Is this a bug or am i doing something wrong?
ComboBox1.Visible:= False;
ComboBox1.ReadOnly:= True;
After changing "ReadOnly" property ComboBox1 became visible. But "Visible" property stays "False". And assigning "Visible:= False" dosn't help. Only
ComboBox1.Visible:= True;
ComboBox1.Visible:= False;
makes ComboBox1 invisible again.
Lazarus 0.9.28-2, GTK2, Debian 5 i386. On win32 works properly.