Milestone 8 UX: folder tree workflows, about dialog, and app icon polish
This commit is contained in:
11
src/profiles_tree_widget.cpp
Normal file
11
src/profiles_tree_widget.cpp
Normal file
@@ -0,0 +1,11 @@
|
||||
#include "profiles_tree_widget.h"
|
||||
|
||||
#include <QDropEvent>
|
||||
|
||||
ProfilesTreeWidget::ProfilesTreeWidget(QWidget* parent) : QTreeWidget(parent) {}
|
||||
|
||||
void ProfilesTreeWidget::dropEvent(QDropEvent* event)
|
||||
{
|
||||
QTreeWidget::dropEvent(event);
|
||||
emit itemsDropped();
|
||||
}
|
||||
Reference in New Issue
Block a user