Don't download dependencies during build

fixes #346
This commit is contained in:
Konstantinos Sideris 2018-07-04 01:38:54 +03:00
parent 6c5309d9eb
commit 3bc8d791fb
9 changed files with 67 additions and 65 deletions

View file

@ -489,7 +489,7 @@ TimelineView::init()
scroll_widget_ = new QWidget(this);
scroll_layout_ = new QVBoxLayout(scroll_widget_);
scroll_layout_->setContentsMargins(15, 0, 15, 15);
scroll_layout_->setContentsMargins(4, 0, 15, 15);
scroll_layout_->addStretch(1);
scroll_layout_->setSpacing(0);
scroll_layout_->setObjectName("timelinescrollarea");

View file

@ -1,7 +1,7 @@
#include <QDebug>
#include <QPainter>
#include <tweeny.h>
#include <tweeny/tweeny.h>
#include "SnackBar.h"