Page 1 of 1

My Suggestion

Posted: Wed Oct 24, 2018 3:30 pm
by wilbert2940
Hello
I suggest adding an extra argument for some of the methods that make changes to the objects. Named : Redraw
Example :
--Prototype :
ComboBox:SetEditText(Object,Text,Redraw)

--Use :
ComboBox:SetEditText(ComboBox1,"SDS",false)

Re: My Suggestion

Posted: Thu Oct 25, 2018 8:10 pm
by Serkan
There is no need to redraw arg for such functions

for example : label.settext is used to update label text ,
if you want to update label text you will use that function
if you do not want to update label text you will not use that function

That redraw arg is already exist for the controls that accept multi data additions or changes
Such as ComboBox:AddItem() or ListBox:AddItem()
You can use *:SetRedraw() function to disbale/enable redrawing

Re: My Suggestion

Posted: Fri Oct 26, 2018 2:06 pm
by wilbert2940
OK thanks.