diff options
| author | Mikaël Capelle <capelle.mikael@gmail.com> | 2021-01-07 21:46:58 +0100 |
|---|---|---|
| committer | Mikaël Capelle <capelle.mikael@gmail.com> | 2021-01-10 10:27:30 +0100 |
| commit | 7d9fa5e4f96840321ff996b4c637b7cd686c3570 (patch) | |
| tree | d078e7264f80edafe0e05360edaa3fb6d79a990f /src/modlistview.h | |
| parent | fc60ea5b7a023493375a6fced6572156f48e36c3 (diff) | |
Fix drop below collapsed separator.
Diffstat (limited to 'src/modlistview.h')
| -rw-r--r-- | src/modlistview.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/modlistview.h b/src/modlistview.h index d8e08a99..6301a5da 100644 --- a/src/modlistview.h +++ b/src/modlistview.h @@ -90,8 +90,14 @@ public: signals:
+ // emitted for dragEnter events
+ //
void dragEntered(const QMimeData* mimeData);
- void dropEntered(const QMimeData* mimeData, DropPosition position);
+
+ // emitted for dropEnter events, the boolean indicates if the drop target
+ // is expanded and the position of the indicator
+ //
+ void dropEntered(const QMimeData* mimeData, bool dropExpanded, DropPosition position);
public slots:
|
