aboutsummaryrefslogtreecommitdiff
path: root/lumina-fm/MainUI.h
diff options
context:
space:
mode:
authorJesse Smith <jessefrgsmith@yahoo.ca>2014-09-15 19:45:53 -0300
committerJesse Smith <jessefrgsmith@yahoo.ca>2014-09-15 19:45:53 -0300
commit7cd91c78c5219a2391a3c4a9a1c2e446989d4c2f (patch)
treec8163ad1f3458dae66f8e0e905fcd7258d8b898c /lumina-fm/MainUI.h
parentSelect the first exec entry from a .desktop file rather than the last. (diff)
parentUpdate the Lumina user button a bit: (diff)
downloadlumina-7cd91c78c5219a2391a3c4a9a1c2e446989d4c2f.tar.gz
lumina-7cd91c78c5219a2391a3c4a9a1c2e446989d4c2f.tar.bz2
lumina-7cd91c78c5219a2391a3c4a9a1c2e446989d4c2f.zip
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'lumina-fm/MainUI.h')
-rw-r--r--lumina-fm/MainUI.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/lumina-fm/MainUI.h b/lumina-fm/MainUI.h
index 5679d4ed..886d3fa7 100644
--- a/lumina-fm/MainUI.h
+++ b/lumina-fm/MainUI.h
@@ -35,6 +35,8 @@
#include <QImageReader>
#include <QScrollBar>
#include <QFileDialog>
+#include <QResizeEvent>
+#include <QDesktopWidget>
//Phonon widgets
#include <Phonon/BackendCapabilities>
@@ -193,6 +195,9 @@ private slots:
void CopyItems();
void PasteItems();
+protected:
+ void resizeEvent(QResizeEvent*);
+
};
#endif \ No newline at end of file
bgstack15