author | llornkcor <llornkcor> | 2004-06-16 09:37:59 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2004-06-16 09:37:59 (UTC) |
commit | 4386dec4cc1b5ef3272b9aba352dfa6fba6a4e06 (patch) (unidiff) | |
tree | bcfa76b6b25e8a341309545eb26cdcceae79d159 | |
parent | 334da0ef825f861792a12f9b51201ed81b491cec (diff) | |
download | opie-4386dec4cc1b5ef3272b9aba352dfa6fba6a4e06.zip opie-4386dec4cc1b5ef3272b9aba352dfa6fba6a4e06.tar.gz opie-4386dec4cc1b5ef3272b9aba352dfa6fba6a4e06.tar.bz2 |
fix position error
-rw-r--r-- | core/multimedia/opieplayer/audiowidget.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/multimedia/opieplayer/audiowidget.cpp b/core/multimedia/opieplayer/audiowidget.cpp index 376f8d3..d135647 100644 --- a/core/multimedia/opieplayer/audiowidget.cpp +++ b/core/multimedia/opieplayer/audiowidget.cpp | |||
@@ -172,5 +172,7 @@ AudioWidget::AudioWidget(QWidget* parent, const char* name, WFlags f) : | |||
172 | // setPaused( mediaPlayerState->paused() ); | 172 | // setPaused( mediaPlayerState->paused() ); |
173 | setPlaying( mediaPlayerState->playing() ); | 173 | setPlaying( mediaPlayerState->playing() ); |
174 | this->setFocus(); | 174 | this->setFocus(); |
175 | if(this->x() < 0 || this->y() < 0) | ||
176 | this->move(0,0); | ||
175 | } | 177 | } |
176 | 178 | ||