summary refs log tree commit diff
path: root/src/timeline
diff options
context:
space:
mode:
authorKonstantinos Sideris <sideris.konstantin@gmail.com>2017-11-30 20:02:46 +0200
committerKonstantinos Sideris <sideris.konstantin@gmail.com>2017-11-30 20:02:46 +0200
commiteae069ad93a6822e8cb96522708115793c01c5d7 (patch)
treee44b67a82110051f90ce8555a3520f62456be02b /src/timeline
parentCreate directories for related files (diff)
downloadnheko-eae069ad93a6822e8cb96522708115793c01c5d7.tar.xz
Group emoji and dialogs with namespaces
Diffstat (limited to 'src/timeline')
-rw-r--r--src/timeline/widgets/ImageItem.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/timeline/widgets/ImageItem.cc b/src/timeline/widgets/ImageItem.cc

index 106fc79b..c8cf8e23 100644 --- a/src/timeline/widgets/ImageItem.cc +++ b/src/timeline/widgets/ImageItem.cc
@@ -22,7 +22,7 @@ #include <QPainter> #include <QPixmap> -#include "dialogs/ImageOverlayDialog.h" +#include "dialogs/ImageOverlay.h" #include "timeline/widgets/ImageItem.h" namespace events = matrix::events; @@ -165,7 +165,7 @@ ImageItem::mousePressEvent(QMouseEvent *event) if (QRect(0, height_ - bottom_height_, width_, bottom_height_).contains(point)) { openUrl(); } else { - auto image_dialog = new ImageOverlayDialog(image_, this); + auto image_dialog = new dialogs::ImageOverlay(image_, this); image_dialog->show(); } }