summaryrefslogtreecommitdiff
path: root/libopie/owait.cpp
Unidiff
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
@@ -40,7 +40,7 @@ OWait::OWait(QWidget *parent, const char* msg, bool dispIcon )
40 hbox->activate(); 40 hbox->activate();
41 41
42 m_pix = Resource::loadPixmap( "BigBusy" ); 42 m_pix = Resource::loadPixmap( "BigBusy" );
43 resize( 32, 32 ); 43 resize( 48, 48 );
44 44
45 m_timerLength = 10; 45 m_timerLength = 10;
46 46
@@ -55,11 +55,11 @@ void OWait::timerEvent( QTimerEvent * ) {
55 55
56void OWait::paintEvent( QPaintEvent * ) { 56void OWait::paintEvent( QPaintEvent * ) {
57 QPainter p( m_lb ); 57 QPainter p( m_lb );
58 p.drawPixmap( 0, 0, m_pix, 32 * frame, 0, 32, 32 ); 58 p.drawPixmap( 0, 0, m_pix, 48 * frame, 0, 48, 48 );
59} 59}
60 60
61void OWait::show() { 61void OWait::show() {
62 startTimer( 500 ); 62 startTimer( 300 );
63 m_waitTimer->start( m_timerLength * 1000, true ); 63 m_waitTimer->start( m_timerLength * 1000, true );
64 QDialog::show(); 64 QDialog::show();
65} 65}