diff options
Diffstat (limited to 'lumina-desktop/desktop-plugins/audioplayer/PlayerWidget.h')
-rw-r--r-- | lumina-desktop/desktop-plugins/audioplayer/PlayerWidget.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lumina-desktop/desktop-plugins/audioplayer/PlayerWidget.h b/lumina-desktop/desktop-plugins/audioplayer/PlayerWidget.h index eaa068ff..6aaeac4c 100644 --- a/lumina-desktop/desktop-plugins/audioplayer/PlayerWidget.h +++ b/lumina-desktop/desktop-plugins/audioplayer/PlayerWidget.h @@ -64,6 +64,11 @@ public: AudioPlayerPlugin(QWidget* parent, QString ID); ~AudioPlayerPlugin(); + virtual QSize defaultPluginSize(){ + // The returned QSize is in grid points (typically 100 or 200 pixels square) + return QSize(3,1); + } + private: PlayerWidget *player; |