diff --git a/data/kdenliveclipmonitor.qml b/data/kdenliveclipmonitor.qml --- a/data/kdenliveclipmonitor.qml +++ b/data/kdenliveclipmonitor.qml @@ -8,7 +8,7 @@ objectName: "root" // default size, but scalable by user - height: 300; width: 400 + height: 500; width: 700 property string markerText property string timecode property point profile @@ -54,16 +54,16 @@ objectName: "safezone" color: "transparent" border.color: "cyan" - width: parent.width * 0.9 - height: parent.height * 0.9 + width: parent.width * 2 + height: parent.height * 2 anchors.centerIn: parent Rectangle { id: safetext objectName: "safetext" color: "transparent" border.color: "cyan" - width: frame.width * 0.8 - height: frame.height * 0.8 + width: frame.width * 1 + height: frame.height * 1 anchors.centerIn: parent } } @@ -147,9 +147,9 @@ } visible: root.showMarkers && text != "" text: root.markerText - maximumLength: 20 + maximumLength: 50 style: TextFieldStyle { - textColor: "white" + textColor: "red" background: Rectangle { color: "#99ff0000" width: marker.width diff --git a/src/bin/bin.cpp b/src/bin/bin.cpp --- a/src/bin/bin.cpp +++ b/src/bin/bin.cpp @@ -473,14 +473,14 @@ } else { // Folder or Folder Up items double factor = (double) opt.decorationSize.height() / r1.height(); - int decoWidth = 2 * textMargin; + int decoWidth = 5 * textMargin; if (factor > 0) { r.setWidth(opt.decorationSize.width() / factor); // Draw thumbnail opt.icon.paint(painter, r); decoWidth += r.width(); } - r1.adjust(decoWidth, 0, 0, 0); + r1.adjust(decoWidth, 1, 1, 1); QRectF bounding; painter->drawText(r1, Qt::AlignLeft | Qt::AlignTop, index.data(AbstractProjectItem::DataName).toString(), &bounding); } @@ -527,7 +527,7 @@ , m_clipsActionsMenu(nullptr) , m_inTimelineAction(nullptr) , m_listType((BinViewType) KdenliveSettings::binMode()) - , m_iconSize(160, 90) + , m_iconSize(200, 95) , m_propertiesPanel(nullptr) , m_blankThumb() , m_invalidClipDialog(nullptr) @@ -1756,7 +1756,7 @@ } m_itemView->setMouseTracking(true); m_itemView->viewport()->installEventFilter(this); - QSize zoom = m_iconSize * (m_slider->value() / 4.0); + QSize zoom = m_iconSize * (m_slider->value() / 9.0); m_itemView->setIconSize(zoom); QPixmap pix(zoom); pix.fill(Qt::lightGray); @@ -1805,7 +1805,7 @@ } KdenliveSettings::setBin_zoom(size); QSize zoom = m_iconSize; - zoom = zoom * (size / 4.0); + zoom = zoom * (size / 8.0); m_itemView->setIconSize(zoom); QPixmap pix(zoom); pix.fill(Qt::lightGray); diff --git a/src/bin/projectfolder.cpp b/src/bin/projectfolder.cpp --- a/src/bin/projectfolder.cpp +++ b/src/bin/projectfolder.cpp @@ -85,7 +85,7 @@ QString ProjectFolder::getToolTip() const { - return i18np("%1 clip", "%1 clips", size()); + return i18np("%28 clip", "%28 clips", size()); } ProjectFolder *ProjectFolder::folder(const QString &id)