Page 1 of 1

Webaccess solo frame bugs

Posted: Sat Nov 16, 2013 2:41 pm
by Stefan Riemens
Hi all,

Webaccess currently handles buttons in a solo frame wrongly. It is possible to select multiple buttons simultaneously.

In webaccess.cpp, line 186, it says:
switch(widget->type())
{
case VCWidget::ButtonWidget:
{
VCButton *button = qobject_cast(widget);
button->pressFunction();
}
break;
etc.

I suppose (not at my development machine currently) that it should be button->click(), rather than button->pressFunction();

Thanks,
Stefan

Webaccess solo frame bugs

Posted: Sat Nov 16, 2013 3:58 pm
by Massimo Callegari
Hi Stefan, yes, webaccess has numerous areas to be improved.
That's why I declared it as "experimental" on version 4.5.0.

Once I'm done with some other coding I will continue the webaccess development.

Did you see my last comment on your pull request on GitHub ?