hi i have an application
built in qt creator test on touch screen nokia 5230
application works fine but when i go to next page int he application softkey part options menu
still remain old when i touch the screen it renews itself correct options menu painted
is this is a bug ?
do u have any solution
here is my example code :
Code:topWnd = topWindow; setupUi(this); QAction *backSoftKeyAction = new QAction(QString(trUtf8("Geri")), this); backSoftKeyAction->setSoftKeyRole(QAction::PositiveSoftKey); QObject::connect(backSoftKeyAction, SIGNAL(triggered()), this, SLOT(onClickGeri())); // SoftKeyAction does not appear at the first time this page load //when i touch screen it appears addAction(backSoftKeyAction); connect(txMesaj, SIGNAL(textChanged()), this, SLOT(smsKarakterSayisi())); connect(btnAliciEkle, SIGNAL(clicked()), this, SLOT(onClickAliciEkle())); connect(btnKisisellestirme, SIGNAL(clicked()), this, SLOT(onClickKisisellestirme())); connect(btnSmsGonder, SIGNAL(clicked()), this, SLOT(onClickSmsGonder()));



