diff --git a/packages/arch/KShare/PKGBUILD b/packages/arch/KShare/PKGBUILD index d8ae78a..e2eb07b 100644 --- a/packages/arch/KShare/PKGBUILD +++ b/packages/arch/KShare/PKGBUILD @@ -8,7 +8,7 @@ url="https://github.com/ArsenArsen/KShare" license=('MIT') provides=(kshare) conflicts=(kshare) -depends=(qt5-base qt5-x11extras xcb-util-cursor ffmpeg libxfixes) +depends=(qt5-base qt5-x11extras qt5-svg xcb-util-cursor ffmpeg libxfixes) makedepends=('git') source=(git+https://github.com/ArsenArsen/KShare.git#branch=dev) sha1sums=('SKIP') diff --git a/packages/arch/Stable-KShare/PKGBUILD b/packages/arch/Stable-KShare/PKGBUILD index b622015..81add6d 100644 --- a/packages/arch/Stable-KShare/PKGBUILD +++ b/packages/arch/Stable-KShare/PKGBUILD @@ -8,7 +8,7 @@ arch=('i686' 'x86_64') url="https://github.com/ArsenArsen/KShare" license=('MIT') provides=('kshare=$pkgver') -depends=(qt5-base qt5-x11extras xcb-util-cursor ffmpeg libxfixes) +depends=(qt5-base qt5-x11extras qt5-svg xcb-util-cursor ffmpeg libxfixes) makedepends=('git') source=(git+https://github.com/ArsenArsen/KShare.git) sha1sums=('SKIP') diff --git a/src/cropeditor/selectionrectangle.cpp b/src/cropeditor/selectionrectangle.cpp index bebb9a4..342cc70 100644 --- a/src/cropeditor/selectionrectangle.cpp +++ b/src/cropeditor/selectionrectangle.cpp @@ -13,7 +13,7 @@ SelectionRectangle::SelectionRectangle(qreal x, qreal y, qreal w, qreal h, QGrap } SelectionRectangle::SelectionRectangle(QRectF rect, QGraphicsItem *parent) -: SelectionRectangle(rect.left(), rect.top(), rect.width(), rect.height()) { +: SelectionRectangle(rect.left(), rect.top(), rect.width(), rect.height(), parent) { } void SelectionRectangle::paint(QPainter *painter, const QStyleOptionGraphicsItem *options, QWidget *widget) {