-rw-r--r-- | libopie/owait.cpp | 6 | ||||
-rw-r--r-- | pics/BigBusy.png | bin | 7789 -> 13564 bytes |
2 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 @@ -35,36 +35,36 @@ OWait::OWait(QWidget *parent, const char* msg, bool dispIcon ) 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; diff --git a/pics/BigBusy.png b/pics/BigBusy.png Binary files differindex d2ebb25..2dae71e 100644 --- a/pics/BigBusy.png +++ b/pics/BigBusy.png |