summaryrefslogtreecommitdiff
path: root/libopie/owait.cpp
Side-by-side diff
Diffstat (limited to 'libopie/owait.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/owait.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/libopie/owait.cpp b/libopie/owait.cpp
index ae25d7a..c7c4445 100644
--- a/libopie/owait.cpp
+++ b/libopie/owait.cpp
@@ -31,44 +31,44 @@ static int frame = 0;
OWait::OWait(QWidget *parent, const char* msg, bool dispIcon )
:QDialog(parent, QObject::tr("Wait"), TRUE,WStyle_Customize) {
QHBoxLayout *hbox = new QHBoxLayout( this );
m_lb = new QLabel( this );
m_lb->setBackgroundMode ( NoBackground );
hbox->addWidget( m_lb );
hbox->activate();
m_pix = Resource::loadPixmap( "BigBusy" );
- resize( 32, 32 );
+ resize( 48, 48 );
m_timerLength = 10;
m_waitTimer = new QTimer( this );
connect( m_waitTimer, SIGNAL( timeout() ), this, SLOT( hide() ) );
}
void OWait::timerEvent( QTimerEvent * ) {
frame = (++frame) % 3;
repaint();
}
void OWait::paintEvent( QPaintEvent * ) {
QPainter p( m_lb );
- p.drawPixmap( 0, 0, m_pix, 32 * frame, 0, 32, 32 );
+ p.drawPixmap( 0, 0, m_pix, 48 * frame, 0, 48, 48 );
}
void OWait::show() {
- startTimer( 500 );
+ startTimer( 300 );
m_waitTimer->start( m_timerLength * 1000, true );
QDialog::show();
}
void OWait::hide() {
killTimers();
m_waitTimer->stop();
frame = 0;
QDialog::hide();
}
void OWait::setTimerLength( int length ) {