[frameworks-kirigami] [Bug 417437] horizontal lines cross the scroll bar

2020-02-14 Thread Ongun Kanat
https://bugs.kde.org/show_bug.cgi?id=417437

Ongun Kanat  changed:

   What|Removed |Added

 Attachment #126020|0   |1
is obsolete||
 Status|RESOLVED|REOPENED
   Assignee|k...@davidedmundson.co.uk|ongun.ka...@gmail.com
 Resolution|FIXED   |---

--- Comment #5 from Ongun Kanat  ---
Created attachment 126021
  --> https://bugs.kde.org/attachment.cgi?id=126021&action=edit
Networks KCM screenshot

-- 
You are receiving this mail because:
You are watching all bug changes.

[frameworks-kirigami] [Bug 417437] horizontal lines cross the scroll bar

2020-02-14 Thread Ongun Kanat
https://bugs.kde.org/show_bug.cgi?id=417437

Ongun Kanat  changed:

   What|Removed |Added

 CC||ongun.ka...@gmail.com

--- Comment #4 from Ongun Kanat  ---
Created attachment 126020
  --> https://bugs.kde.org/attachment.cgi?id=126020&action=edit
Networks KCM screenshot

It seems like networks KCM also suffers from the same bug. Consider fixing the
bug in Kirigami maybe?

-- 
You are receiving this mail because:
You are watching all bug changes.

[frameworks-kirigami] [Bug 417437] horizontal lines cross the scroll bar

2020-02-13 Thread Arjen Hiemstra
https://bugs.kde.org/show_bug.cgi?id=417437

Arjen Hiemstra  changed:

   What|Removed |Added

 Status|CONFIRMED   |RESOLVED
   Version Fixed In||5.18.1
  Latest Commit||https://commits.kde.org/pla
   ||sma-desktop/83b920946c52c2f
   ||100a21e1e14af693f14f3e3a7
 Resolution|--- |FIXED

--- Comment #3 from Arjen Hiemstra  ---
Git commit 83b920946c52c2f100a21e1e14af693f14f3e3a7 by Arjen Hiemstra.
Committed on 13/02/2020 at 19:41.
Pushed by ahiemstra into branch 'Plasma/5.18'.

Baloo KCM: Do not anchor fill ScrollView

Summary:
ScrollView will resize any single child flickabe to the right size.
However, this behaviour breaks if that child specifies anchors,
causing the child to ignore any padding specified in ScrollView.
Removing the anchoring fixes the scrollbar overlapping and also
fixes list items poking outside the scrollview border.
FIXED-IN: 5.18.1

Test Plan:
Before:

{F8101357}

After:

{F8101358}

Reviewers: #plasma, ngraham, davidedmundson

Reviewed By: #plasma, ngraham, davidedmundson

Subscribers: davidedmundson, plasma-devel

Tags: #plasma

Differential Revision: https://phabricator.kde.org/D27379

M  +0-1kcms/baloo/package/contents/ui/main.qml

https://commits.kde.org/plasma-desktop/83b920946c52c2f100a21e1e14af693f14f3e3a7

-- 
You are receiving this mail because:
You are watching all bug changes.

[frameworks-kirigami] [Bug 417437] horizontal lines cross the scroll bar

2020-02-13 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=417437

David Edmundson  changed:

   What|Removed |Added

Product|systemsettings  |frameworks-kirigami
 CC||k...@davidedmundson.co.uk
   Target Milestone|--- |Not decided
  Component|kcm_baloo   |general
   Assignee|baloo-bugs-n...@kde.org |k...@davidedmundson.co.uk

--- Comment #2 from David Edmundson  ---
better test

import QtQuick.Controls 2.11 as QQC2
import QtQuick.Dialogs 1.2 as QtDialogs
import org.kde.kirigami 2.4 as Kirigami
import QtQuick 2.1
import QtQuick.Layouts 1.1

QQC2.ScrollView {
width: 1000
height: 1000
id: bgObject
Component.onCompleted: bgObject.background.visible = true
Layout.fillWidth: true
Layout.fillHeight: true

ListView {
id: fileExcludeList
anchors.fill: parent

model: 200
delegate: Kirigami.BasicListItem {
label: "ASDF " + model.index
}
}
}

-- 
You are receiving this mail because:
You are watching all bug changes.