[dolphin] [Bug 416937] Dolphin occasionally takes 1 minute to start

2021-04-14 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=416937

--- Comment #8 from tagwer...@innerjoin.org ---
I don't think I've seen this behaviour for months

In the latter times I saw it (anecdotal recollection, I've got nothing written
down), I associated it with klipper/clipboard issues. Nothing to do with
KDEConnect in my case, but text being "clipped" in different KVM guest. The "go
to" solution became deleting the entire clipboard history...

I do still see clipboard problems but no longer the "30 second/1 minute pause"

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

[Ruqola] [Bug 435409] Honor message permissions like edit or delete

2021-04-14 Thread Angel Docampo
https://bugs.kde.org/show_bug.cgi?id=435409

--- Comment #11 from Angel Docampo  ---
like this?
bool RocketChatAccount::isMessageDeletable(const Message &message) const
{
if (!allowMessageDeletingEnabled()) {
return false;
}
if (hasPermission(QStringLiteral("force-delete-message"))) {
return true;
}
if (hasPermission(QStringLiteral("delete-message"))) {
return true;
}
if (message.userId() != userId()) {
return false;
}
if (ruqolaServerConfig()->blockDeletingMessageInMinutes() == 0) { // TODO
verify it
return true;
}
qDebug() << " message.userId() " << message.userId() << " userId() " <<
userId();
return (message.timeStamp() +
ruqolaServerConfig()->blockDeletingMessageInMinutes() * 60 * 1000) >
QDateTime::currentMSecsSinceEpoch();
}

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

[digikam] [Bug 435660] Strange crashes when previewing .MOV files

2021-04-14 Thread Maik Qualmann
https://bugs.kde.org/show_bug.cgi?id=435660

--- Comment #11 from Maik Qualmann  ---
Git commit 958126660a7e61417efe42aeaa01c11134c69373 by Maik Qualmann.
Committed on 15/04/2021 at 06:16.
Pushed by mqualmann into branch 'master'.

try to fix crash in the media player

M  +15   -2core/libs/video/player/mediaplayerview.cpp

https://invent.kde.org/graphics/digikam/commit/958126660a7e61417efe42aeaa01c11134c69373

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

[kwin] [Bug 435673] Wayland session on Nvidia doesn't start

2021-04-14 Thread Alex
https://bugs.kde.org/show_bug.cgi?id=435673

Alex  changed:

   What|Removed |Added

 CC||alex...@protonmail.com

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

[systemsettings] [Bug 431200] Unable to set double click for right click in touchpad settings

2021-04-14 Thread Andrey
https://bugs.kde.org/show_bug.cgi?id=431200

--- Comment #4 from Andrey  ---
Created attachment 137623
  --> https://bugs.kde.org/attachment.cgi?id=137623&action=edit
another_kcm_touchpad wayland

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

[systemsettings] [Bug 431200] Unable to set double click for right click in touchpad settings

2021-04-14 Thread Andrey
https://bugs.kde.org/show_bug.cgi?id=431200

Andrey  changed:

   What|Removed |Added

 CC||and...@psyduck.se

--- Comment #3 from Andrey  ---
Created attachment 137622
  --> https://bugs.kde.org/attachment.cgi?id=137622&action=edit
another_kcm_touchpad X11

I'm experiencing the same (or very similar) issue: right click settings are
present under X11 but missing when using Wayland.

Plasma 5.21.4 on Arch.

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

[dolphin] [Bug 409574] Dolphin startup is sometimes delayed by up to 10 seconds

2021-04-14 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=409574

Méven Car  changed:

   What|Removed |Added

 CC||tagwer...@innerjoin.org

--- Comment #6 from Méven Car  ---
*** Bug 416937 has been marked as a duplicate of this bug. ***

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

[dolphin] [Bug 416937] Dolphin occasionally takes 1 minute to start

2021-04-14 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=416937

Méven Car  changed:

   What|Removed |Added

 CC||meve...@gmail.com

--- Comment #7 from Méven Car  ---


*** This bug has been marked as a duplicate of bug 409574 ***

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

[systemsettings] [Bug 408116] [libinput] Options to set right-click are greyed out and middle-click options when using Icons view in System Settings, or in the KCMShell version, or when on Wayland aft

2021-04-14 Thread Andrey
https://bugs.kde.org/show_bug.cgi?id=408116

Andrey  changed:

   What|Removed |Added

 CC||and...@psyduck.se

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

[dolphin] [Bug 409574] Dolphin startup is sometimes delayed by up to 10 seconds

2021-04-14 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=409574

--- Comment #5 from Méven Car  ---
(In reply to Patrick Silva from comment #4)
> dupe of bug 348521 ?

No, we need to keep bugs separate when the deal with different things even
similar.
Having meta-bugs non-discerning bugs where no one has the same symptoms make it
so very hard to fix.

sometimes takes 1 min / 30ses != starting is a bit slow

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

[dolphin] [Bug 348521] Dolphin is a little bit slow to startup

2021-04-14 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=348521

Méven Car  changed:

   What|Removed |Added

 CC||meve...@gmail.com

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

[Ruqola] [Bug 435409] Honor message permissions like edit or delete

2021-04-14 Thread Laurent Montel
https://bugs.kde.org/show_bug.cgi?id=435409

--- Comment #10 from Laurent Montel  ---
(In reply to Angel Docampo from comment #9)
> Create Public Channels
> Create Direct Messages
> Create Private Channels
> Create Personal Access Tokens
> delete-own-message
> Leave Channels
> Leave Private Groups
> Mention All
> Mention Here
> Preview Public Channel
> start-discussion
> start-discussion-other-user
> View Public Channel
> View Direct Messages
> View History
> View Outside Room
> View Private Room

bool RocketChatAccount::isMessageDeletable(const Message &message) const
{
if (!allowMessageDeletingEnabled()) {
return false;
}
if (hasPermission(QStringLiteral("force-delete-message"))) {
return true;
}
if (hasPermission(QStringLiteral("delete-message"))) {
return true;
}
if (message.userId() != userId()) {
return false;
}
if (ruqolaServerConfig()->blockDeletingMessageInMinutes() == 0) { // TODO
verify it
return true;
}
return (message.timeStamp() +
ruqolaServerConfig()->blockDeletingMessageInMinutes() * 60 * 1000) >
QDateTime::currentMSecsSinceEpoch();
}

So your user doesn't have force-delete-message or delete-message permission,
"message.userId() != userId()" can be different
=> it will return false

So I don't understand why it's true for you.
no idea how to debug it without access to server...
Or perhaps adding debug as qDebug() << " message.userId() " << message.userId()
<< " userId() " << userId();

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

[kwin] [Bug 434968] Snap-to-border halo effect remains visible after dropping a window close to a screen border

2021-04-14 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=434968

--- Comment #4 from Bug Janitor Service  ---
Dear Bug Submitter,

This bug has been in NEEDSINFO status with no change for at least
15 days. Please provide the requested information as soon as
possible and set the bug status as REPORTED. Due to regular bug
tracker maintenance, if the bug is still in NEEDSINFO status with
no change in 30 days the bug will be closed as RESOLVED > WORKSFORME
due to lack of needed information.

For more information about our bug triaging procedures please read the
wiki located here:
https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

If you have already provided the requested information, please
mark the bug as REPORTED so that the KDE team knows that the bug is
ready to be confirmed.

Thank you for helping us make KDE software even better for everyone!

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

[kdenlive] [Bug 428189] Kdenlive crashing when creating a new project

2021-04-14 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=428189

Bug Janitor Service  changed:

   What|Removed |Added

 Status|NEEDSINFO   |RESOLVED
 Resolution|WAITINGFORINFO  |WORKSFORME

--- Comment #15 from Bug Janitor Service  ---
This bug has been in NEEDSINFO status with no change for at least
30 days. The bug is now closed as RESOLVED > WORKSFORME
due to lack of needed information.

For more information about our bug triaging procedures please read the
wiki located here:
https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

Thank you for helping us make KDE software even better for everyone!

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

[kdenlive] [Bug 424967] kdenlive doesn't load its translations

2021-04-14 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=424967

--- Comment #8 from Bug Janitor Service  ---
Dear Bug Submitter,

This bug has been in NEEDSINFO status with no change for at least
15 days. Please provide the requested information as soon as
possible and set the bug status as REPORTED. Due to regular bug
tracker maintenance, if the bug is still in NEEDSINFO status with
no change in 30 days the bug will be closed as RESOLVED > WORKSFORME
due to lack of needed information.

For more information about our bug triaging procedures please read the
wiki located here:
https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

If you have already provided the requested information, please
mark the bug as REPORTED so that the KDE team knows that the bug is
ready to be confirmed.

Thank you for helping us make KDE software even better for everyone!

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

[kdenlive] [Bug 413090] Slowly loads big projects

2021-04-14 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=413090

Bug Janitor Service  changed:

   What|Removed |Added

 Resolution|WAITINGFORINFO  |WORKSFORME
 Status|NEEDSINFO   |RESOLVED

--- Comment #3 from Bug Janitor Service  ---
This bug has been in NEEDSINFO status with no change for at least
30 days. The bug is now closed as RESOLVED > WORKSFORME
due to lack of needed information.

For more information about our bug triaging procedures please read the
wiki located here:
https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

Thank you for helping us make KDE software even better for everyone!

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

[kdenlive] [Bug 421458] No effect property tab

2021-04-14 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=421458

Bug Janitor Service  changed:

   What|Removed |Added

 Status|NEEDSINFO   |RESOLVED
 Resolution|WAITINGFORINFO  |WORKSFORME

--- Comment #3 from Bug Janitor Service  ---
This bug has been in NEEDSINFO status with no change for at least
30 days. The bug is now closed as RESOLVED > WORKSFORME
due to lack of needed information.

For more information about our bug triaging procedures please read the
wiki located here:
https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

Thank you for helping us make KDE software even better for everyone!

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

[kdenlive] [Bug 426873] Whenever the Motion Freeze effect is inserted into a video, it crashes the video every time it renders

2021-04-14 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=426873

--- Comment #4 from Bug Janitor Service  ---
Dear Bug Submitter,

This bug has been in NEEDSINFO status with no change for at least
15 days. Please provide the requested information as soon as
possible and set the bug status as REPORTED. Due to regular bug
tracker maintenance, if the bug is still in NEEDSINFO status with
no change in 30 days the bug will be closed as RESOLVED > WORKSFORME
due to lack of needed information.

For more information about our bug triaging procedures please read the
wiki located here:
https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

If you have already provided the requested information, please
mark the bug as REPORTED so that the KDE team knows that the bug is
ready to be confirmed.

Thank you for helping us make KDE software even better for everyone!

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

[kdenlive] [Bug 427136] Processing turns the video into a mess

2021-04-14 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=427136

Bug Janitor Service  changed:

   What|Removed |Added

 Resolution|WAITINGFORINFO  |WORKSFORME
 Status|NEEDSINFO   |RESOLVED

--- Comment #17 from Bug Janitor Service  ---
This bug has been in NEEDSINFO status with no change for at least
30 days. The bug is now closed as RESOLVED > WORKSFORME
due to lack of needed information.

For more information about our bug triaging procedures please read the
wiki located here:
https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

Thank you for helping us make KDE software even better for everyone!

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

[kdenlive] [Bug 421233] save or open impossible

2021-04-14 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=421233

Bug Janitor Service  changed:

   What|Removed |Added

 Resolution|WAITINGFORINFO  |WORKSFORME
 Status|NEEDSINFO   |RESOLVED

--- Comment #3 from Bug Janitor Service  ---
This bug has been in NEEDSINFO status with no change for at least
30 days. The bug is now closed as RESOLVED > WORKSFORME
due to lack of needed information.

For more information about our bug triaging procedures please read the
wiki located here:
https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

Thank you for helping us make KDE software even better for everyone!

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

[kwin] [Bug 434491] KDE is very unstable on AMD binary driver

2021-04-14 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=434491

Bug Janitor Service  changed:

   What|Removed |Added

 Resolution|WAITINGFORINFO  |WORKSFORME
 Status|NEEDSINFO   |RESOLVED

--- Comment #4 from Bug Janitor Service  ---
This bug has been in NEEDSINFO status with no change for at least
30 days. The bug is now closed as RESOLVED > WORKSFORME
due to lack of needed information.

For more information about our bug triaging procedures please read the
wiki located here:
https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

Thank you for helping us make KDE software even better for everyone!

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

[kate] [Bug 435044] Centered Text

2021-04-14 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=435044

--- Comment #2 from Bug Janitor Service  ---
Dear Bug Submitter,

This bug has been in NEEDSINFO status with no change for at least
15 days. Please provide the requested information as soon as
possible and set the bug status as REPORTED. Due to regular bug
tracker maintenance, if the bug is still in NEEDSINFO status with
no change in 30 days the bug will be closed as RESOLVED > WORKSFORME
due to lack of needed information.

For more information about our bug triaging procedures please read the
wiki located here:
https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

If you have already provided the requested information, please
mark the bug as REPORTED so that the KDE team knows that the bug is
ready to be confirmed.

Thank you for helping us make KDE software even better for everyone!

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

[kdenlive] [Bug 421128] Nothing in the transform toolset works, zoom does not happen

2021-04-14 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=421128

Bug Janitor Service  changed:

   What|Removed |Added

 Status|NEEDSINFO   |RESOLVED
 Resolution|WAITINGFORINFO  |WORKSFORME

--- Comment #6 from Bug Janitor Service  ---
This bug has been in NEEDSINFO status with no change for at least
30 days. The bug is now closed as RESOLVED > WORKSFORME
due to lack of needed information.

For more information about our bug triaging procedures please read the
wiki located here:
https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

Thank you for helping us make KDE software even better for everyone!

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

[kdenlive] [Bug 426769] Switching audio backend to: "sdl2_audio" - Segmentation fault

2021-04-14 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=426769

Bug Janitor Service  changed:

   What|Removed |Added

 Status|NEEDSINFO   |RESOLVED
 Resolution|WAITINGFORINFO  |WORKSFORME

--- Comment #5 from Bug Janitor Service  ---
This bug has been in NEEDSINFO status with no change for at least
30 days. The bug is now closed as RESOLVED > WORKSFORME
due to lack of needed information.

For more information about our bug triaging procedures please read the
wiki located here:
https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

Thank you for helping us make KDE software even better for everyone!

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

[klipper] [Bug 347345] Actions can not be enabled

2021-04-14 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=347345

Bug Janitor Service  changed:

   What|Removed |Added

 Status|NEEDSINFO   |RESOLVED
 Resolution|WAITINGFORINFO  |WORKSFORME

--- Comment #3 from Bug Janitor Service  ---
This bug has been in NEEDSINFO status with no change for at least
30 days. The bug is now closed as RESOLVED > WORKSFORME
due to lack of needed information.

For more information about our bug triaging procedures please read the
wiki located here:
https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

Thank you for helping us make KDE software even better for everyone!

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

[kdenlive] [Bug 426895] Crackling while moving timeline

2021-04-14 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=426895

--- Comment #2 from Bug Janitor Service  ---
Dear Bug Submitter,

This bug has been in NEEDSINFO status with no change for at least
15 days. Please provide the requested information as soon as
possible and set the bug status as REPORTED. Due to regular bug
tracker maintenance, if the bug is still in NEEDSINFO status with
no change in 30 days the bug will be closed as RESOLVED > WORKSFORME
due to lack of needed information.

For more information about our bug triaging procedures please read the
wiki located here:
https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

If you have already provided the requested information, please
mark the bug as REPORTED so that the KDE team knows that the bug is
ready to be confirmed.

Thank you for helping us make KDE software even better for everyone!

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

[kdenlive] [Bug 424173] Can't Export project

2021-04-14 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=424173

Bug Janitor Service  changed:

   What|Removed |Added

 Status|NEEDSINFO   |RESOLVED
 Resolution|WAITINGFORINFO  |WORKSFORME

--- Comment #3 from Bug Janitor Service  ---
This bug has been in NEEDSINFO status with no change for at least
30 days. The bug is now closed as RESOLVED > WORKSFORME
due to lack of needed information.

For more information about our bug triaging procedures please read the
wiki located here:
https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

Thank you for helping us make KDE software even better for everyone!

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

[Powerdevil] [Bug 435754] New: Keyboard backlight does not turn back on after opening laptop lid if it was already on before closing the lid.

2021-04-14 Thread Dave
https://bugs.kde.org/show_bug.cgi?id=435754

Bug ID: 435754
   Summary: Keyboard backlight does not turn back on after opening
laptop lid if it was already on before closing the
lid.
   Product: Powerdevil
   Version: 5.20.5
  Platform: Gentoo Packages
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: plasma-b...@kde.org
  Reporter: fishnet37...@gmail.com
  Target Milestone: ---

SUMMARY
I have a Lenovo ThinkPad P72 with Gentoo Linux installed on it.  In KDE's power
management settings, I have the keyboard brightness enabled and set to the
maximum for when the AC adapter is connected.  If I close the lid and then
re-open it, the keyboard backlight remains off.  I also have it configured to
do nothing when the lid is closed with the AC adapter connected.

STEPS TO REPRODUCE
1. Enable the keyboard backlight in the Power Management settings.
2. Close the laptop lid.
3. After a couple seconds, open the lid again.

OBSERVED RESULT
Keyboard backlight remains off.

EXPECTED RESULT
Keyboard backlight respects the Power Management configuration.

SOFTWARE/OS VERSIONS
Windows: 
macOS: 
Linux/KDE Plasma: Gentoo Linux
(available in About System)
KDE Plasma Version: 5.20.5
KDE Frameworks Version: 5.80.0
Qt Version: 5.15.2

ADDITIONAL INFORMATION
I can work around the issue by installing acpid and having it configured to
turn the backlight back on when the lid is opened, but I don't believe I should
have to.

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

[kio-extras] [Bug 434443] kdeinit5 segmentation fault crash after displaying a screenshot preview in a notification

2021-04-14 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=434443

Bug Janitor Service  changed:

   What|Removed |Added

 Status|NEEDSINFO   |RESOLVED
 Resolution|BACKTRACE   |WORKSFORME

--- Comment #4 from Bug Janitor Service  ---
This bug has been in NEEDSINFO status with no change for at least
30 days. The bug is now closed as RESOLVED > WORKSFORME
due to lack of needed information.

For more information about our bug triaging procedures please read the
wiki located here:
https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

Thank you for helping us make KDE software even better for everyone!

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

[ark] [Bug 434457] [BUG] Incorrect decryption of file names in encrypted archives

2021-04-14 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=434457

Bug Janitor Service  changed:

   What|Removed |Added

 Status|NEEDSINFO   |RESOLVED
 Resolution|WAITINGFORINFO  |WORKSFORME

--- Comment #3 from Bug Janitor Service  ---
This bug has been in NEEDSINFO status with no change for at least
30 days. The bug is now closed as RESOLVED > WORKSFORME
due to lack of needed information.

For more information about our bug triaging procedures please read the
wiki located here:
https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

Thank you for helping us make KDE software even better for everyone!

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

[kdenlive] [Bug 431834] Ao tentar mover um clipe na linha do tempo, ele é impedido pelos outros clipes, como se fossem barreiras físicas.

2021-04-14 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=431834

--- Comment #3 from Bug Janitor Service  ---
Dear Bug Submitter,

This bug has been in NEEDSINFO status with no change for at least
15 days. Please provide the requested information as soon as
possible and set the bug status as REPORTED. Due to regular bug
tracker maintenance, if the bug is still in NEEDSINFO status with
no change in 30 days the bug will be closed as RESOLVED > WORKSFORME
due to lack of needed information.

For more information about our bug triaging procedures please read the
wiki located here:
https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

If you have already provided the requested information, please
mark the bug as REPORTED so that the KDE team knows that the bug is
ready to be confirmed.

Thank you for helping us make KDE software even better for everyone!

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

[plasmashell] [Bug 435037] Extremely slow/laggy animations

2021-04-14 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=435037

--- Comment #2 from Bug Janitor Service  ---
Dear Bug Submitter,

This bug has been in NEEDSINFO status with no change for at least
15 days. Please provide the requested information as soon as
possible and set the bug status as REPORTED. Due to regular bug
tracker maintenance, if the bug is still in NEEDSINFO status with
no change in 30 days the bug will be closed as RESOLVED > WORKSFORME
due to lack of needed information.

For more information about our bug triaging procedures please read the
wiki located here:
https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

If you have already provided the requested information, please
mark the bug as REPORTED so that the KDE team knows that the bug is
ready to be confirmed.

Thank you for helping us make KDE software even better for everyone!

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

[kdenlive] [Bug 412027] No clip markers for IN/OUT in clip view

2021-04-14 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=412027

--- Comment #2 from Bug Janitor Service  ---
Dear Bug Submitter,

This bug has been in NEEDSINFO status with no change for at least
15 days. Please provide the requested information as soon as
possible and set the bug status as REPORTED. Due to regular bug
tracker maintenance, if the bug is still in NEEDSINFO status with
no change in 30 days the bug will be closed as RESOLVED > WORKSFORME
due to lack of needed information.

For more information about our bug triaging procedures please read the
wiki located here:
https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

If you have already provided the requested information, please
mark the bug as REPORTED so that the KDE team knows that the bug is
ready to be confirmed.

Thank you for helping us make KDE software even better for everyone!

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

[kdenlive] [Bug 414107] Broken Star-End animation timing

2021-04-14 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=414107

--- Comment #2 from Bug Janitor Service  ---
Dear Bug Submitter,

This bug has been in NEEDSINFO status with no change for at least
15 days. Please provide the requested information as soon as
possible and set the bug status as REPORTED. Due to regular bug
tracker maintenance, if the bug is still in NEEDSINFO status with
no change in 30 days the bug will be closed as RESOLVED > WORKSFORME
due to lack of needed information.

For more information about our bug triaging procedures please read the
wiki located here:
https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

If you have already provided the requested information, please
mark the bug as REPORTED so that the KDE team knows that the bug is
ready to be confirmed.

Thank you for helping us make KDE software even better for everyone!

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

[kdenlive] [Bug 413540] Title templates does not save duration

2021-04-14 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=413540

--- Comment #7 from Bug Janitor Service  ---
Dear Bug Submitter,

This bug has been in NEEDSINFO status with no change for at least
15 days. Please provide the requested information as soon as
possible and set the bug status as REPORTED. Due to regular bug
tracker maintenance, if the bug is still in NEEDSINFO status with
no change in 30 days the bug will be closed as RESOLVED > WORKSFORME
due to lack of needed information.

For more information about our bug triaging procedures please read the
wiki located here:
https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

If you have already provided the requested information, please
mark the bug as REPORTED so that the KDE team knows that the bug is
ready to be confirmed.

Thank you for helping us make KDE software even better for everyone!

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

[kdenlive] [Bug 411120] Manage Project Profiles is missing from Settings menu

2021-04-14 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=411120

--- Comment #4 from Bug Janitor Service  ---
Dear Bug Submitter,

This bug has been in NEEDSINFO status with no change for at least
15 days. Please provide the requested information as soon as
possible and set the bug status as REPORTED. Due to regular bug
tracker maintenance, if the bug is still in NEEDSINFO status with
no change in 30 days the bug will be closed as RESOLVED > WORKSFORME
due to lack of needed information.

For more information about our bug triaging procedures please read the
wiki located here:
https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

If you have already provided the requested information, please
mark the bug as REPORTED so that the KDE team knows that the bug is
ready to be confirmed.

Thank you for helping us make KDE software even better for everyone!

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

[kdenlive] [Bug 406024] composite transition between two color clips is painfully slow

2021-04-14 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=406024

--- Comment #4 from Bug Janitor Service  ---
Dear Bug Submitter,

This bug has been in NEEDSINFO status with no change for at least
15 days. Please provide the requested information as soon as
possible and set the bug status as REPORTED. Due to regular bug
tracker maintenance, if the bug is still in NEEDSINFO status with
no change in 30 days the bug will be closed as RESOLVED > WORKSFORME
due to lack of needed information.

For more information about our bug triaging procedures please read the
wiki located here:
https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

If you have already provided the requested information, please
mark the bug as REPORTED so that the KDE team knows that the bug is
ready to be confirmed.

Thank you for helping us make KDE software even better for everyone!

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

[kdenlive] [Bug 412026] Playhead indicator in timeline gets wider when timeline is zoomed 16 or larger

2021-04-14 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=412026

--- Comment #3 from Bug Janitor Service  ---
Dear Bug Submitter,

This bug has been in NEEDSINFO status with no change for at least
15 days. Please provide the requested information as soon as
possible and set the bug status as REPORTED. Due to regular bug
tracker maintenance, if the bug is still in NEEDSINFO status with
no change in 30 days the bug will be closed as RESOLVED > WORKSFORME
due to lack of needed information.

For more information about our bug triaging procedures please read the
wiki located here:
https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

If you have already provided the requested information, please
mark the bug as REPORTED so that the KDE team knows that the bug is
ready to be confirmed.

Thank you for helping us make KDE software even better for everyone!

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

[kwin] [Bug 383745] Occasional artifacts with transparent panels

2021-04-14 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=383745

--- Comment #4 from Bug Janitor Service  ---
Dear Bug Submitter,

This bug has been in NEEDSINFO status with no change for at least
15 days. Please provide the requested information as soon as
possible and set the bug status as REPORTED. Due to regular bug
tracker maintenance, if the bug is still in NEEDSINFO status with
no change in 30 days the bug will be closed as RESOLVED > WORKSFORME
due to lack of needed information.

For more information about our bug triaging procedures please read the
wiki located here:
https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

If you have already provided the requested information, please
mark the bug as REPORTED so that the KDE team knows that the bug is
ready to be confirmed.

Thank you for helping us make KDE software even better for everyone!

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

[kdenlive] [Bug 353244] git master: Changing Project Settings/Project Folder - Directory not pre-selected

2021-04-14 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=353244

--- Comment #5 from Bug Janitor Service  ---
Dear Bug Submitter,

This bug has been in NEEDSINFO status with no change for at least
15 days. Please provide the requested information as soon as
possible and set the bug status as REPORTED. Due to regular bug
tracker maintenance, if the bug is still in NEEDSINFO status with
no change in 30 days the bug will be closed as RESOLVED > WORKSFORME
due to lack of needed information.

For more information about our bug triaging procedures please read the
wiki located here:
https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

If you have already provided the requested information, please
mark the bug as REPORTED so that the KDE team knows that the bug is
ready to be confirmed.

Thank you for helping us make KDE software even better for everyone!

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

[plasmashell] [Bug 365665] Tooltips show previous content when there is no icon for the window

2021-04-14 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=365665

--- Comment #3 from Bug Janitor Service  ---
Dear Bug Submitter,

This bug has been in NEEDSINFO status with no change for at least
15 days. Please provide the requested information as soon as
possible and set the bug status as REPORTED. Due to regular bug
tracker maintenance, if the bug is still in NEEDSINFO status with
no change in 30 days the bug will be closed as RESOLVED > WORKSFORME
due to lack of needed information.

For more information about our bug triaging procedures please read the
wiki located here:
https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging

If you have already provided the requested information, please
mark the bug as REPORTED so that the KDE team knows that the bug is
ready to be confirmed.

Thank you for helping us make KDE software even better for everyone!

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

[kwin] [Bug 435728] Cursor is oversized and pixelated when using 150% scale on Wayland

2021-04-14 Thread Jan Keith Darunday
https://bugs.kde.org/show_bug.cgi?id=435728

--- Comment #4 from Jan Keith Darunday  ---
If it's the scaling, is there perhaps a way to disable it only for the cursor
so I can use size 36 or 48 instead without the scaling? Thanks

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

[kwin] [Bug 435728] Cursor is oversized and pixelated when using 150% scale on Wayland

2021-04-14 Thread Jan Keith Darunday
https://bugs.kde.org/show_bug.cgi?id=435728

--- Comment #3 from Jan Keith Darunday  ---
Created attachment 137621
  --> https://bugs.kde.org/attachment.cgi?id=137621&action=edit
Camera picture of how it actually displays on my screen

Here is a picture of it. The cursor is larger than the button in real life.

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

[kmymoney] [Bug 435753] No aqbanking plugin available from binary factory

2021-04-14 Thread Ralf Habacker
https://bugs.kde.org/show_bug.cgi?id=435753

Ralf Habacker  changed:

   What|Removed |Added

 Blocks||435581


Referenced Bugs:

https://bugs.kde.org/show_bug.cgi?id=435581
[Bug 435581] Stable Windows builds miss aqbanking plugin and languages
-- 
You are receiving this mail because:
You are watching all bug changes.

[kmymoney] [Bug 435581] Stable Windows builds miss aqbanking plugin and languages

2021-04-14 Thread Ralf Habacker
https://bugs.kde.org/show_bug.cgi?id=435581

Ralf Habacker  changed:

   What|Removed |Added

 Depends on||435753


Referenced Bugs:

https://bugs.kde.org/show_bug.cgi?id=435753
[Bug 435753] No aqbanking plugin available from binary factory
-- 
You are receiving this mail because:
You are watching all bug changes.

[kmymoney] [Bug 435753] New: No aqbanking plugin available from binary factory

2021-04-14 Thread Ralf Habacker
https://bugs.kde.org/show_bug.cgi?id=435753

Bug ID: 435753
   Summary: No aqbanking plugin available from binary factory
   Product: kmymoney
   Version: 5.1.1
  Platform: Microsoft Windows
OS: Microsoft Windows
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: packaging
  Assignee: kmymoney-de...@kde.org
  Reporter: ralf.habac...@freenet.de
  Target Milestone: ---

SUMMARY
The preview builds for Windows listed at https://kmymoney.org/download.html
does not provide the aqbanking plugin.


STEPS TO REPRODUCE
1. download and unpack a portable package from the listed web page 
2. start kmymoney
3. open settings menu

OBSERVED RESULT
There is no entry for the aqbanking plugin


EXPECTED RESULT
There should be an entry for the aqbanking plugin

SOFTWARE/OS VERSIONS
Windows: 10

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

[kmymoney] [Bug 426414] Stable kmymoney package from binary factory does not provide gui translations

2021-04-14 Thread Ralf Habacker
https://bugs.kde.org/show_bug.cgi?id=426414

Ralf Habacker  changed:

   What|Removed |Added

 Blocks||435581


Referenced Bugs:

https://bugs.kde.org/show_bug.cgi?id=435581
[Bug 435581] Stable Windows builds miss aqbanking plugin and languages
-- 
You are receiving this mail because:
You are watching all bug changes.

[kmymoney] [Bug 435581] Stable Windows builds miss aqbanking plugin and languages

2021-04-14 Thread Ralf Habacker
https://bugs.kde.org/show_bug.cgi?id=435581

Ralf Habacker  changed:

   What|Removed |Added

 Depends on||426414


Referenced Bugs:

https://bugs.kde.org/show_bug.cgi?id=426414
[Bug 426414] Stable kmymoney package from binary factory does not provide gui
translations
-- 
You are receiving this mail because:
You are watching all bug changes.

[kmymoney] [Bug 435752] Selecting icon sets is not supported on Windows

2021-04-14 Thread Ralf Habacker
https://bugs.kde.org/show_bug.cgi?id=435752

Ralf Habacker  changed:

   What|Removed |Added

 Blocks||435581


Referenced Bugs:

https://bugs.kde.org/show_bug.cgi?id=435581
[Bug 435581] Stable Windows builds miss aqbanking plugin and languages
-- 
You are receiving this mail because:
You are watching all bug changes.

[kmymoney] [Bug 435581] Stable Windows builds miss aqbanking plugin and languages

2021-04-14 Thread Ralf Habacker
https://bugs.kde.org/show_bug.cgi?id=435581

Ralf Habacker  changed:

   What|Removed |Added

 Depends on||435752


Referenced Bugs:

https://bugs.kde.org/show_bug.cgi?id=435752
[Bug 435752] Selecting icon sets is not supported on Windows
-- 
You are receiving this mail because:
You are watching all bug changes.

[kmymoney] [Bug 435752] New: Selecting icon sets is not supported on Windows

2021-04-14 Thread Ralf Habacker
https://bugs.kde.org/show_bug.cgi?id=435752

Bug ID: 435752
   Summary: Selecting icon sets is not supported on Windows
   Product: kmymoney
   Version: 5.1.1
  Platform: Microsoft Windows
OS: Microsoft Windows
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: kmymoney-de...@kde.org
  Reporter: ralf.habac...@freenet.de
  Target Milestone: ---

SUMMARY
At bug 426414 it has been stated, that in the settings dialog the page
selecting an icon style different does not support any entry except 'system.'   

STEPS TO REPRODUCE
1. download portable package of kmymoney from binary-factory.kde.org or
kmymoney.org/snapshots.php and unpack
2. start kmymoney
3. enter settings dialog and select page 'symbols'
4. change the selected entry, press save and restart kmymoney

OBSERVED RESULT
The used icon set is not changed.

EXPECTED RESULT
On Windows that settings page should not be visible to not confuse the user

SOFTWARE/OS VERSIONS
Windows: 10
KDE Frameworks Version: 5.65 
Qt Version: 5.11

ADDITIONAL INFORMATION
The availability of different icon sets depends on the installation of
corresponding icon sets, of which only breeze and breeze-dark are available for
Windows, and a correct matching of the search paths between Qt5, kicontheme and
the application.

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

[kdeplasma-addons] [Bug 435749] Calculator: allow editing the input

2021-04-14 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=435749

2wxsy5823...@opayq.com changed:

   What|Removed |Added

   Target Milestone|1.0 |---
Product|plasmashell |kdeplasma-addons
   Assignee|k...@davidedmundson.co.uk|plasma-b...@kde.org
  Component|general |calculator

--- Comment #1 from 2wxsy5823...@opayq.com ---
> I had to install GNOME calculator, along with a few hundred megs of flatpak 
> dependencies, in order to simply be able to edit the formula I had typed in 
> the 
> calculator.
I recommend using krunner for simple calculations, or kcalc for advanced
calculations.

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

[kwin] [Bug 435728] Cursor is oversized and pixelated when using 150% scale on Wayland

2021-04-14 Thread Jan Keith Darunday
https://bugs.kde.org/show_bug.cgi?id=435728

--- Comment #2 from Jan Keith Darunday  ---
Created attachment 137620
  --> https://bugs.kde.org/attachment.cgi?id=137620&action=edit
Screenshot showing normal-sized non-pixelated cursor on screenshots

Hi, taking a screenshot with spectacle shows an unpixelated and normal-sized
cursor instead. I also notice that the cursor is in the wrong position compared
to what's on my screen.

In this screenshot, the cursor on my screen is actually around the Size: 36
selector at the bottom part of the window but spectacle saves it as if the
cursor is outside the window.

I'll follow up with a camera photo of my screen showing how the cursor appears.

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

[krita] [Bug 422465] Add Fcitx support to Krita's AppImage

2021-04-14 Thread Weng Xuetian
https://bugs.kde.org/show_bug.cgi?id=422465

Weng Xuetian  changed:

   What|Removed |Added

 CC||wen...@gmail.com

--- Comment #4 from Weng Xuetian  ---
Actually, #1 is not pointing to the exact right repo.

To support fcitx(both 4 and 5), either https://github.com/fcitx/fcitx-qt5 or
https://github.com/fcitx/fcitx5-qt can be used.

And you do not need https://github.com/fcitx/fcitx{,5} to build it. There is an
cmake option that only build the plugin part without the library.
https://github.com/fcitx/fcitx-qt5/blob/77cb995a1ed0c30401e43388842b99610b53569e/CMakeLists.txt#L12
 

I don't think it will pull in any additional dependency that is not in Qt's
dependency (the only explicit ones are xkbcommon, which is also used by Qt)

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

[krita] [Bug 434803] brush with snapping to any curved assistants (ellipse, spline) creates tangent lines

2021-04-14 Thread vanyossi
https://bugs.kde.org/show_bug.cgi?id=434803

vanyossi  changed:

   What|Removed |Added

Summary|brush with snapping to a|brush with snapping to any
   |spline assistants creates   |curved assistants (ellipse,
   |tangent lines   |spline) creates tangent
   ||lines

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

[Qt/KDE Flatpak Runtime] [Bug 435382] Add FCITX to improve CJK languages

2021-04-14 Thread Weng Xuetian
https://bugs.kde.org/show_bug.cgi?id=435382

Weng Xuetian  changed:

   What|Removed |Added

 Resolution|WAITINGFORINFO  |WORKSFORME
 Status|NEEDSINFO   |RESOLVED

--- Comment #5 from Weng Xuetian  ---
I'll close this for now since this is only related to flatpak runtime and give
my help in the original report.

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

[kmymoney] [Bug 435581] Stable Windows builds miss aqbanking plugin and languages

2021-04-14 Thread Ralf Habacker
https://bugs.kde.org/show_bug.cgi?id=435581

Ralf Habacker  changed:

   What|Removed |Added

 Blocks||426400


Referenced Bugs:

https://bugs.kde.org/show_bug.cgi?id=426400
[Bug 426400] Fix KF5 issues on Windows
-- 
You are receiving this mail because:
You are watching all bug changes.

[kmymoney] [Bug 426400] Fix KF5 issues on Windows

2021-04-14 Thread Ralf Habacker
https://bugs.kde.org/show_bug.cgi?id=426400

Ralf Habacker  changed:

   What|Removed |Added

 Depends on||435581


Referenced Bugs:

https://bugs.kde.org/show_bug.cgi?id=435581
[Bug 435581] Stable Windows builds miss aqbanking plugin and languages
-- 
You are receiving this mail because:
You are watching all bug changes.

[kwin] [Bug 395725] Blur effect applied for aurorae decoration shadows

2021-04-14 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=395725

--- Comment #42 from ryu.ketsu...@outlook.com ---
(In reply to Paul McAuley from comment #41)
> Breeze doesn't have this bug because Breeze also has blur disabled in its
> breeze.json file. It's the Breeze forks with blur enabled in their .json,
> and all Aurorae decorations (blur enabled in aurorae.json) which are
> affected.
> 
> To change the .json you need to edit the source code of the decoration and
> recompile.

Then I am experiencing a bug with Breeze and all the forks. None of them have
blur working on my end and at least Lightly, the one I compiled from source,
have Blur enabled. Should I open another bug report for this specific one?

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

[Qt/KDE Flatpak Runtime] [Bug 435382] Add FCITX to improve CJK languages

2021-04-14 Thread Weng Xuetian
https://bugs.kde.org/show_bug.cgi?id=435382

--- Comment #4 from Weng Xuetian  ---
I don't think there's anything that need to be done to kde flatpak runtime.

There was a upstream flatpak breaking change that make fcitx 4.2.9.7 to be the
minimum version to work with current kde's flatpak runtime. So as long as the
host system is up to date it should just work.

Fcitx im module is included in kde flatpak runtime long time ago. So there is
nothing we could do there.

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

[kdenlive] [Bug 415420] cjk input of apt install and flatpak (appimage)

2021-04-14 Thread Weng Xuetian
https://bugs.kde.org/show_bug.cgi?id=415420

Weng Xuetian  changed:

   What|Removed |Added

 CC||wen...@gmail.com

--- Comment #8 from Weng Xuetian  ---
As a fcitx developer point of view, since this bug is report quit long time
ago, it's not really clear if the system is too old that doesn't have up to
date fcitx (>=4.2.9.7). There was a upstream flatpak break change that make
fcitx 4.2.9.7 to be the minimum version to work with current kde's flatpak
runtime.

Fcitx im module is included in kde flatpak runtime long time ago. So there is
nothing we could do there.

I just checked on archlinux + kdenlive from flathub. Fcitx just works properly.

As for AppImage, it should be a totally different story.

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

[plasmashell] [Bug 435751] New: Plasma crashes when click on night color widget

2021-04-14 Thread German Alves
https://bugs.kde.org/show_bug.cgi?id=435751

Bug ID: 435751
   Summary: Plasma crashes when click on night color widget
   Product: plasmashell
   Version: 5.21.3
  Platform: openSUSE RPMs
OS: Linux
Status: REPORTED
  Keywords: drkonqi
  Severity: crash
  Priority: NOR
 Component: general
  Assignee: k...@davidedmundson.co.uk
  Reporter: germanoal...@protonmail.com
CC: plasma-b...@kde.org
  Target Milestone: 1.0

Application: plasmashell (5.21.3)

Qt Version: 5.15.2
Frameworks Version: 5.80.0
Operating System: Linux 5.11.11-1-default x86_64
Windowing System: Wayland
Drkonqi Version: 5.21.3
Distribution: "openSUSE Tumbleweed"

-- Information about the crash:
- What I was doing when the application crashed:
Setting the native night color in Plasma at Full Wayland session in openSUSE
Tumbleweed.

The crash can be reproduced sometimes.

-- Backtrace:
Application: Plasma (plasmashell), signal: Segmentation fault
Content of s_kcrashErrorMessage: [Current thread is 1 (LWP 1594)]
[KCrash Handler]
#6  0x7eff716e896d in update_buffers
(dri2_surf=dri2_surf@entry=0x7eff08158540) at
../src/egl/drivers/dri2/platform_wayland.c:677
#7  0x7eff716e8d64 in image_get_buffers (driDrawable=,
format=, stamp=, loaderPrivate=0x7eff08158540,
buffer_mask=, buffers=0x7eff1ea4ae90) at
../src/egl/drivers/dri2/platform_wayland.c:812
#8  0x7eff711e8606 in intel_update_image_buffers (drawable=0x7eff6c063200,
brw=0x55a152845010) at ../src/mesa/drivers/dri/i965/brw_context.c:1886
#9  intel_update_renderbuffers.isra.0 (drawable=0x7eff6c063200,
context=, context=) at
../src/mesa/drivers/dri/i965/brw_context.c:1513
#10 0x7eff7095feb6 in intel_prepare_render (brw=0x55a152845010) at
../src/mesa/drivers/dri/i965/brw_context.c:1534
#11 0x7eff7094a4f2 in brw_clear (ctx=0x55a152845010, mask=50) at
../src/mesa/drivers/dri/i965/brw_clear.c:257
#12 0x7eff786637f7 in QSGBatchRenderer::Renderer::renderBatches
(this=this@entry=0x7eff080c7fe0) at
/usr/src/debug/libqt5-qtdeclarative-5.15.2-3.1.x86_64/src/quick/scenegraph/coreapi/qsgbatchrenderer.cpp:4042
#13 0x7eff78664102 in QSGBatchRenderer::Renderer::render (this=) at
/usr/src/debug/libqt5-qtdeclarative-5.15.2-3.1.x86_64/src/quick/scenegraph/coreapi/qsgbatchrenderer.cpp:4363
#14 0x7eff7864c770 in QSGRenderer::renderScene (bindable=...,
this=0x7eff080c7fe0) at
/usr/src/debug/libqt5-qtdeclarative-5.15.2-3.1.x86_64/src/quick/scenegraph/coreapi/qsgrenderer.cpp:264
#15 QSGRenderer::renderScene (this=0x7eff080c7fe0, bindable=...) at
/usr/src/debug/libqt5-qtdeclarative-5.15.2-3.1.x86_64/src/quick/scenegraph/coreapi/qsgrenderer.cpp:220
#16 0x7eff7864cc43 in QSGRenderer::renderScene (this=,
fboId=) at
/usr/src/debug/libqt5-qtdeclarative-5.15.2-3.1.x86_64/src/quick/scenegraph/coreapi/qsgrenderer.cpp:212
#17 0x7eff786abec3 in QSGDefaultRenderContext::renderNextFrame
(this=0x55a14907ff40, renderer=0x7eff080c7fe0, fboId=) at
/usr/src/debug/libqt5-qtdeclarative-5.15.2-3.1.x86_64/src/quick/scenegraph/qsgdefaultrendercontext.cpp:228
#18 0x7eff78715b69 in QQuickWindowPrivate::renderSceneGraph
(this=0x55a149206190, size=..., surfaceSize=...) at
/usr/src/debug/libqt5-qtdeclarative-5.15.2-3.1.x86_64/src/quick/items/qquickwindow.cpp:617
#19 0x7eff786b9d2d in QSGRenderThread::syncAndRender (this=0x55a14fc4ea40,
grabImage=0x0) at
/usr/src/debug/libqt5-qtdeclarative-5.15.2-3.1.x86_64/src/quick/scenegraph/qsgthreadedrenderloop.cpp:837
#20 0x7eff786ba697 in QSGRenderThread::run (this=0x55a14fc4ea40) at
/usr/src/debug/libqt5-qtdeclarative-5.15.2-3.1.x86_64/src/quick/scenegraph/qsgthreadedrenderloop.cpp:1043
#21 0x7eff7695fef1 in QThreadPrivate::start (arg=0x55a14fc4ea40) at
thread/qthread_unix.cpp:329
#22 0x7eff75aa0299 in start_thread (arg=0x7eff1ea4c640) at
pthread_create.c:473
#23 0x7eff765803b3 in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:95

Thread 14 (LWP 2190 "QSGRenderThread"):
#1  0x7eff75aacaff in __GI___futex_abstimed_wait_cancelable64
(futex_word=futex_word@entry=0x55a14e55ac30, expected=expected@entry=0,
clockid=clockid@entry=0, abstime=abstime@entry=0x0, private=private@entry=0) at
../sysdeps/nptl/futex-internal.c:123
#2  0x7eff75aa6260 in __pthread_cond_wait_common (abstime=0x0, clockid=0,
mutex=0x55a14e55abe0, cond=0x55a14e55ac08) at pthread_cond_wait.c:504
#3  __pthread_cond_wait (cond=0x55a14e55ac08, mutex=0x55a14e55abe0) at
pthread_cond_wait.c:619
#4  0x7eff76965e7b in QWaitConditionPrivate::wait (deadline=...,
deadline=..., this=0x55a14e55abe0) at thread/qwaitcondition_unix.cpp:146
#5  QWaitCondition::wait (this=this@entry=0x55a14a5260f8,
mutex=mutex@entry=0x55a14a5260f0, deadline=...) at
thread/qwaitcondition_unix.cpp:225
#6  0x7eff786b8227 in QSGRenderThreadEventQueue::takeEvent (wait=true,
this=0x55a14a5260e8) at /usr/include/qt5/QtCore/qdeadlinetimer.h:68
#7  QSGRenderThread::process

[kwin] [Bug 395725] Blur effect applied for aurorae decoration shadows

2021-04-14 Thread Paul McAuley
https://bugs.kde.org/show_bug.cgi?id=395725

--- Comment #41 from Paul McAuley  ---
(In reply to ryu.ketsueki from comment #40)
> (In reply to Paul McAuley from comment #39)
> > (In reply to llocnex from comment #36)
> > > This issue does not exist on "Oxygen" Window Decoration theme. Actually
> > > Oxygen theme looks super stable compare to others (eg. breeze). May be 
> > > there
> > > is something special what can be implemented in breeze too?
> > 
> > Oxygen just has blur disabled in its .json file, so not a solution.
> 
> I didn't know that was a thing. Just curious, how do I change that? Assuming
> it also work on Breeze for being based on Oxygen

Breeze doesn't have this bug because Breeze also has blur disabled in its
breeze.json file. It's the Breeze forks with blur enabled in their .json, and
all Aurorae decorations (blur enabled in aurorae.json) which are affected.

To change the .json you need to edit the source code of the decoration and
recompile.

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

[frameworks-kinit] [Bug 426387] klauncher crashes because accessing dangled pointers

2021-04-14 Thread Ralf Habacker
https://bugs.kde.org/show_bug.cgi?id=426387

--- Comment #4 from Ralf Habacker  ---
(In reply to Bug Janitor Service from comment #2)

It was mentioned at
https://invent.kde.org/frameworks/kinit/-/merge_requests/6#note_195092 that the
dangling pointer seems to be just an indication of a deeper problem with the
signal/slot system and requires further troubleshooting.

Since there are currently no qt5 pretty printers for gdb, this will probably be
delayed until the GSOC project
https://community.kde.org/GSoC/2021/Ideas#Project:_Add_gdb_pretty_printer_support_for_Qt5
is completed.

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

[neon] [Bug 435574] Unattended updates should only be used for packages that actually require a reboot

2021-04-14 Thread Aleix Pol
https://bugs.kde.org/show_bug.cgi?id=435574

--- Comment #19 from Aleix Pol  ---
Git commit 8464bec59dd3b05485897c97663fbe28267fc449 by Aleix Pol.
Committed on 15/04/2021 at 00:50.
Pushed by apol into branch 'master'.

kcm: Add a configuration setting for offline updates

Lets users who prefer unstable systems to rebootting keep their old
ways.
Lets users from distros that don't enable it by default,
enable it and enjoy a more stable upgrade experience.

M  +8-0kcm/CMakeLists.txt
A  +18   -0kcm/discoversettings.kcfg
A  +11   -0kcm/discoversettings.kcfgc
M  +38   -0kcm/package/contents/ui/main.qml
M  +10   -0kcm/updates.cpp
M  +5-0kcm/updates.h

https://invent.kde.org/plasma/discover/commit/8464bec59dd3b05485897c97663fbe28267fc449

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

[drkonqi] [Bug 435750] New: Bug reporting address for kdeinit5

2021-04-14 Thread Dan Dascalescu
https://bugs.kde.org/show_bug.cgi?id=435750

Bug ID: 435750
   Summary: Bug reporting address for kdeinit5
   Product: drkonqi
   Version: 5.21.4
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: major
  Priority: NOR
 Component: general
  Assignee: plasma-b...@kde.org
  Reporter: ddascalescu+...@gmail.com
  Target Milestone: ---

kdeinit5 crashed, but I couldn't report it "because kdeinit5 does not provide a
bug reporting address". Would it be possible to add such an address? The KDE
Crash Handler said the report might be helpful.


Application: kdeinit5 (kdeinit5), signal: Segmentation fault

[New LWP 13723]
[New LWP 13724]
[New LWP 13725]
[New LWP 13726]
[New LWP 13727]
[New LWP 13728]
[New LWP 13729]
[New LWP 13730]
[New LWP 13731]
[New LWP 13732]
[New LWP 13733]
[New LWP 13734]
[New LWP 13735]
[New LWP 13736]
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
0x7f4424b17aff in __GI___poll (fds=0x7ffd29041fe8, nfds=1, timeout=1000) at
../sysdeps/unix/sysv/linux/poll.c:29
[Current thread is 1 (Thread 0x7f4421643cc0 (LWP 13722))]

Thread 15 (Thread 0x7f43f1ffb700 (LWP 13736)):
#0  futex_abstimed_wait_cancelable (private=,
abstime=0x7f43f1ffacd0, clockid=, expected=0,
futex_word=0x55b630857460) at ../sysdeps/nptl/futex-internal.h:320
#1  __pthread_cond_wait_common (abstime=0x7f43f1ffacd0, clockid=, mutex=0x55b630857410, cond=0x55b630857438) at pthread_cond_wait.c:520
#2  __pthread_cond_timedwait (cond=0x55b630857438, mutex=0x55b630857410,
abstime=0x7f43f1ffacd0) at pthread_cond_wait.c:656
#3  0x7f4424cc7ce8 in QWaitCondition::wait(QMutex*, QDeadlineTimer) () at
/lib/x86_64-linux-gnu/libQt5Core.so.5
#4  0x7f4424cc51f1 in  () at /lib/x86_64-linux-gnu/libQt5Core.so.5
#5  0x7f4424cc1bec in  () at /lib/x86_64-linux-gnu/libQt5Core.so.5
#6  0x7f4424080609 in start_thread (arg=) at
pthread_create.c:477
#7  0x7f4424b24293 in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:95

Thread 14 (Thread 0x7f43f27fc700 (LWP 13735)):
#0  futex_abstimed_wait_cancelable (private=,
abstime=0x7f43f27fbcd0, clockid=, expected=0,
futex_word=0x55b630856f24) at ../sysdeps/nptl/futex-internal.h:320
#1  __pthread_cond_wait_common (abstime=0x7f43f27fbcd0, clockid=, mutex=0x55b630856ed0, cond=0x55b630856ef8) at pthread_cond_wait.c:520
#2  __pthread_cond_timedwait (cond=0x55b630856ef8, mutex=0x55b630856ed0,
abstime=0x7f43f27fbcd0) at pthread_cond_wait.c:656
#3  0x7f4424cc7ce8 in QWaitCondition::wait(QMutex*, QDeadlineTimer) () at
/lib/x86_64-linux-gnu/libQt5Core.so.5
#4  0x7f4424cc51f1 in  () at /lib/x86_64-linux-gnu/libQt5Core.so.5
#5  0x7f4424cc1bec in  () at /lib/x86_64-linux-gnu/libQt5Core.so.5
#6  0x7f4424080609 in start_thread (arg=) at
pthread_create.c:477
#7  0x7f4424b24293 in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:95

Thread 13 (Thread 0x7f43f2ffd700 (LWP 13734)):
#0  futex_abstimed_wait_cancelable (private=,
abstime=0x7f43f2ffccd0, clockid=, expected=0,
futex_word=0x55b6308569e0) at ../sysdeps/nptl/futex-internal.h:320
#1  __pthread_cond_wait_common (abstime=0x7f43f2ffccd0, clockid=, mutex=0x55b630856990, cond=0x55b6308569b8) at pthread_cond_wait.c:520
#2  __pthread_cond_timedwait (cond=0x55b6308569b8, mutex=0x55b630856990,
abstime=0x7f43f2ffccd0) at pthread_cond_wait.c:656
#3  0x7f4424cc7ce8 in QWaitCondition::wait(QMutex*, QDeadlineTimer) () at
/lib/x86_64-linux-gnu/libQt5Core.so.5
#4  0x7f4424cc51f1 in  () at /lib/x86_64-linux-gnu/libQt5Core.so.5
#5  0x7f4424cc1bec in  () at /lib/x86_64-linux-gnu/libQt5Core.so.5
#6  0x7f4424080609 in start_thread (arg=) at
pthread_create.c:477
#7  0x7f4424b24293 in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:95

Thread 12 (Thread 0x7f43f37fe700 (LWP 13733)):
#0  futex_abstimed_wait_cancelable (private=,
abstime=0x7f43f37fdcd0, clockid=, expected=0,
futex_word=0x55b630850564) at ../sysdeps/nptl/futex-internal.h:320
#1  __pthread_cond_wait_common (abstime=0x7f43f37fdcd0, clockid=, mutex=0x55b630850510, cond=0x55b630850538) at pthread_cond_wait.c:520
#2  __pthread_cond_timedwait (cond=0x55b630850538, mutex=0x55b630850510,
abstime=0x7f43f37fdcd0) at pthread_cond_wait.c:656
#3  0x7f4424cc7ce8 in QWaitCondition::wait(QMutex*, QDeadlineTimer) () at
/lib/x86_64-linux-gnu/libQt5Core.so.5
#4  0x7f4424cc51f1 in  () at /lib/x86_64-linux-gnu/libQt5Core.so.5
#5  0x7f4424cc1bec in  () at /lib/x86_64-linux-gnu/libQt5Core.so.5
#6  0x7f4424080609 in start_thread (arg=) at
pthread_create.c:477
#7  0x7f4424b24293 in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:95

Thread 11 (Thread 0x7f43f3fff700 (LWP 13732)):
#0  futex_abstimed_wait_cancelable (private=,
abstime=0x7f43f3ffecd0, clockid=, expected=0,
futex_word=0x55b630855450) at ../sysdeps/nptl/futex-internal.h:320
#1  __pthread_cond_wait_common (abstime

[plasmashell] [Bug 435749] New: Calculator: allow editing the input

2021-04-14 Thread Dan Dascalescu
https://bugs.kde.org/show_bug.cgi?id=435749

Bug ID: 435749
   Summary: Calculator: allow editing the input
   Product: plasmashell
   Version: 5.21.4
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: k...@davidedmundson.co.uk
  Reporter: ddascalescu+...@gmail.com
CC: plasma-b...@kde.org
  Target Milestone: 1.0

Created attachment 137619
  --> https://bugs.kde.org/attachment.cgi?id=137619&action=edit
Calculator misleading cursor

The "Calculator" Plasma widget doesn't allow editing the input, despite the
hover mouse cursor being the shape of an insertion point.

I think strict skeumorphism doesn't help at all here. This software runs on a
computer, not a physical calculator. It's fine to simulate the interface, but
to forbid features a computer allows, like placing the cursor arbitrarily in
the input, I find to be counter-productive.

I had to install GNOME calculator, along with a few hundred megs of flatpak
dependencies, in order to simply be able to edit the formula I had typed in the
calculator.

(Not sure where to file this - the process name is "plasmawindowed" but I don't
see a "Calculator" component in this "plasmashell" product.)

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

[abakus] [Bug 435748] New: Typing "abakus" in KRunner doesn't show "Get abakus"

2021-04-14 Thread Dan Dascalescu
https://bugs.kde.org/show_bug.cgi?id=435748

Bug ID: 435748
   Summary: Typing "abakus" in KRunner doesn't show "Get abakus"
   Product: abakus
   Version: 0.92
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: k.h...@gmx.de
  Reporter: ddascalescu+...@gmail.com
  Target Milestone: ---

Is this package still maintained?

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

[plasmashell] [Bug 435747] New: Truncated panel button tooltip

2021-04-14 Thread Dan Dascalescu
https://bugs.kde.org/show_bug.cgi?id=435747

Bug ID: 435747
   Summary: Truncated panel button tooltip
   Product: plasmashell
   Version: 5.21.4
  Platform: Neon Packages
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: Task Manager and Icons-Only Task Manager
  Assignee: h...@kde.org
  Reporter: ddascalescu+...@gmail.com
CC: plasma-b...@kde.org
  Target Milestone: 1.0

Created attachment 137618
  --> https://bugs.kde.org/attachment.cgi?id=137618&action=edit
Truncated panel button tooltip

Fresh restart after hitting bug 433166. I have two virtual desktops/

Mousing over the taskbar buttons shows truncated tooltips as seen in the
screenshot.

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

[kwin] [Bug 433166] Plasma slows to a crawl with low CPU usage after certain system setting changes

2021-04-14 Thread Dan Dascalescu
https://bugs.kde.org/show_bug.cgi?id=433166

--- Comment #11 from Dan Dascalescu  ---
This bug is fdriving me insane. Now I've created a new Virtual Desktop, and the
entire OS slowed to a crawl. Have to reboot again.

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

[kmenuedit] [Bug 435746] New: Ability to use icon from .appimage files

2021-04-14 Thread Dan Dascalescu
https://bugs.kde.org/show_bug.cgi?id=435746

Bug ID: 435746
   Summary: Ability to use icon from .appimage files
   Product: kmenuedit
   Version: 5.21.4
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: wishlist
  Priority: NOR
 Component: general
  Assignee: plasma-b...@kde.org
  Reporter: ddascalescu+...@gmail.com
  Target Milestone: ---

When creating a new item, the "Select Icon" file picker -> Browse, only offers
image file type options (*.png, *.svg etc.). Even if I override that with `*`,
it can't read the icon from self-contained .AppOmage files.

However, Dolphin does show correctly the icons appimage files, so perhaps that
code could be reused?

An even more user-friendly solution: when the Command field contains precisely
one existing file path ending in .AppImage, the Menu Editor could automatically
read the icon from that file.

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

[kdenlive] [Bug 431803] Audio near the end of a long video speeds up

2021-04-14 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=431803

--- Comment #5 from midnightk...@hotmail.com ---
I'm experiencing this bug as well. The video files I am editing are 1080p 60fps
MKV

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

[kdenlive] [Bug 435710] Repeatable crash bug on render (with logs)

2021-04-14 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=435710

--- Comment #4 from postacco...@protonmail.com ---
(In reply to Julius Künzel from comment #1)
> Thanks for your report! Can you please upload your project file or tell us
> which effects you use in the project?

Just an update on this.  I removed the first of the 3 x images (as shown in
previous screen shot), re-added it and re-applied the fade and transform.  It
then rendered no problem. Maybe not worth spending your time on this as it
could well be a strange one off thing?  I'm happy to have this closed if you
are.  Thanks for all you do for the community.  Much respect.

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

[kdenlive] [Bug 431803] Audio near the end of a long video speeds up

2021-04-14 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=431803

--- Comment #4 from midnightk...@hotmail.com ---
Created attachment 137617
  --> https://bugs.kde.org/attachment.cgi?id=137617&action=edit
file which bug has affected

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

[kdenlive] [Bug 431803] Audio near the end of a long video speeds up

2021-04-14 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=431803

midnightk...@hotmail.com changed:

   What|Removed |Added

 CC||midnightk...@hotmail.com

--- Comment #3 from midnightk...@hotmail.com ---
*** Bug 435712 has been marked as a duplicate of this bug. ***

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

[kdenlive] [Bug 435712] Audio plays too fast on long video file

2021-04-14 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=435712

midnightk...@hotmail.com changed:

   What|Removed |Added

 Status|NEEDSINFO   |RESOLVED
 Resolution|WAITINGFORINFO  |DUPLICATE

--- Comment #2 from midnightk...@hotmail.com ---


*** This bug has been marked as a duplicate of bug 431803 ***

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

[kwin] [Bug 435745] New: Wayland: new application windows are created in "all activities" instead of current activity

2021-04-14 Thread Oded Arbel
https://bugs.kde.org/show_bug.cgi?id=435745

Bug ID: 435745
   Summary: Wayland: new application windows are created in "all
activities" instead of current activity
   Product: kwin
   Version: git master
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: activities
  Assignee: kwin-bugs-n...@kde.org
  Reporter: o...@geek.co.il
  Target Milestone: ---

SUMMARY
In KWin Wayland, when a new application window is created, its activities are
set to "all activities" unlike in X11 where a new window is by default set to
only the current activity.

STEPS TO REPRODUCE
1. Set up 2 or more activities.
2. Start a new application, for example Dolphin.
3. Check the window operation menu, "Show in Activities" sub menu.

OBSERVED RESULT
"All activities" is selected.

EXPECTED RESULT
Only the current activity should be selected, like in X11.

SOFTWARE/OS VERSIONS
Linux/KDE Plasma: 
KDE Plasma Version: 5.21.80
KDE Frameworks Version: 5.82.0
Qt Version: 5.15.2

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

[frameworks-kio] [Bug 435744] New: kioclient5 exec should be able to open .desktop files without absolute path

2021-04-14 Thread Thiago Sueto
https://bugs.kde.org/show_bug.cgi?id=435744

Bug ID: 435744
   Summary: kioclient5 exec should be able to open .desktop files
without absolute path
   Product: frameworks-kio
   Version: unspecified
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: wishlist
  Priority: NOR
 Component: general
  Assignee: kio-bugs-n...@kde.org
  Reporter: herzensch...@gmail.com
CC: kdelibs-b...@kde.org
  Target Milestone: ---

It would be easier to script with kioclient5 if it behaved like gtk-launch,
which allows to execute .desktop files simply by running their filename
directly:

gtk-launch org.kde.dolphin.desktop

or

gtk-launch org.kde.dolphin

(both work)

Currently the only syntax available for kioclient5 to open a .desktop file is

kioclient5 exec /usr/share/applications/org.kde.dolphin.desktop

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

[kwin] [Bug 435743] New: Wayland: Switching activities does not remember current desktop

2021-04-14 Thread Oded Arbel
https://bugs.kde.org/show_bug.cgi?id=435743

Bug ID: 435743
   Summary: Wayland: Switching activities does not remember
current desktop
   Product: kwin
   Version: git master
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: activities
  Assignee: kwin-bugs-n...@kde.org
  Reporter: o...@geek.co.il
  Target Milestone: ---

SUMMARY
With KWin Wayland, when changing desktops, the desktop is changed in all
activities, while in KWin X11 each activity maintains its own "current
desktop".

STEPS TO REPRODUCE
1. Set up two or more activities with 2 or more desktops/workspaces.
2. Switch to desktop 2 in the first activity.
3. Switch to the second activity.
4. Switch to desktop 1.
5. Switch back to the first activity.

OBSERVED RESULT
Back in the first activity, the current desktop is desktop 1.

EXPECTED RESULT
In the first activity the current desktop should remain desktop 2, as it is
under X11.

SOFTWARE/OS VERSIONS
Linux/KDE Plasma: 
KDE Plasma Version: 5.21.80
KDE Frameworks Version: 5.82.0
Qt Version: 5.15.2

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

[kdenlive] [Bug 435710] Repeatable crash bug on render (with logs)

2021-04-14 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=435710

--- Comment #3 from postacco...@protonmail.com ---
Hi there, the project file is quite large.  9GB or so.
I can if the list of effects doesn't do anything, however I should note it
keeps crashing at the one spot.  I'll include a screenshot and a list of
effects for now.  Thank you

Effects used:
 - fade in
 - fade out
 - transform
 - speed increase in videos
 - manual change of frame rate in some video settings

However, the only ones that seem to happen at crash point are:
 - fade in
 - fade out
 - transform

Please see attached image for a helpful visual on where it happens.

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

[kdenlive] [Bug 435710] Repeatable crash bug on render (with logs)

2021-04-14 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=435710

postacco...@protonmail.com changed:

   What|Removed |Added

 CC||postacco...@protonmail.com

--- Comment #2 from postacco...@protonmail.com ---
Created attachment 137616
  --> https://bugs.kde.org/attachment.cgi?id=137616&action=edit
Explanier for where the crash occurs

Hi there, the project file is quite large.  9GB or so.
I can if the list of effects doesn't do anything, however I should note it
keeps crashing at the one spot.  I'll include a screenshot and a list of
effects for now.  Thank you

Effects used:
 - fade in
 - fade out
 - transform
 - speed increase in videos
 - manual change of frame rate in some video settings

However, the only ones that seem to happen at crash point are:
 - fade in
 - fade out
 - transform

Please see attached image for a helpful visual on where it happens.

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

[kwin] [Bug 435742] [Plasma Mobile] Crash in kwin_wayland

2021-04-14 Thread Richard Ullger
https://bugs.kde.org/show_bug.cgi?id=435742

--- Comment #2 from Richard Ullger  ---
Backtrace

coredumpctl gdb 3831 
   PID: 3831 (kwin_wayland)
   UID: 1000 (richard)
   GID: 1000 (richard)
Signal: 11 (SEGV)
 Timestamp: Wed 2021-04-14 22:22:43 BST (19min ago)
  Command Line: kwin_wayland --wayland_fd 4 --xwayland
/home/richard/kde/usr/lib/libexec/startplasma-waylandsession
Executable: /home/richard/kde/usr/bin/kwin_wayland
 Control Group: /user.slice/user-1000.slice/session-4.scope
  Unit: session-4.scope
 Slice: user-1000.slice
   Session: 4
 Owner UID: 1000 (richard)
   Boot ID: 87e81a0551f54891bf2f3f88edcc2fc2
Machine ID: cbdca0011fc949b68c6fb34f1c74a5d0
  Hostname: richards-pinetab
   Storage:
/var/lib/systemd/coredump/core.kwin_wayland.1000.87e81a0551f54891bf2f3f88edcc2fc2.3831.161843536300.zst
(present)
 Disk Size: 1.1M
   Message: Process 3831 (kwin_wayland) of user 1000 dumped core.

Stack trace of thread 3831:
#0  0x95e35154 n/a (n/a + 0x0)
#1  0xb46a13f8 n/a (n/a + 0x0)
#2  0xb469f7ac n/a (n/a + 0x0)
#3  0x9b934538 n/a (n/a + 0x0)
#4  0xb46a0124 n/a (n/a + 0x0)

GNU gdb (GDB) 10.1
Copyright (C) 2020 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later 
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Type "show copying" and "show warranty" for details.
This GDB was configured as "aarch64-unknown-linux-gnu".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
.
Find the GDB manual and other documentation resources online at:
.

For help, type "help".
Type "apropos word" to search for commands related to "word"...
Reading symbols from /home/richard/kde/usr/bin/kwin_wayland...
[New LWP 3831]
[New LWP 3832]
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/usr/lib/libthread_db.so.1".
Core was generated by `kwin_wayland --wayland_fd 4 --xwayland
/home/richard/kde/usr/lib/libexec/startp'.
Program terminated with signal SIGSEGV, Segmentation fault.
--Type  for more, q to quit, c to continue without paging--
#0  0x95e35154 in ?? ()
[Current thread is 1 (Thread 0x9782b490 (LWP 3831))]
(gdb) bt
#0  0x95e35154 in  ()
#1  0xb46a13f8 in KWin::ApplicationWayland::performStartup()
(this=0xe7aef628)
at /home/richard/kde/src/plasma/kwin/src/main_wayland.cpp:159
#2  0xb469f7ac in main(int, char**)
(argc=, argv=)
at /home/richard/kde/src/plasma/kwin/src/main_wayland.cpp:800
(gdb)

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

[konsole] [Bug 435675] File association is overriding http(s)/ftp links in konsole

2021-04-14 Thread Justin Zobel
https://bugs.kde.org/show_bug.cgi?id=435675

--- Comment #7 from Justin Zobel  ---
Created attachment 137615
  --> https://bugs.kde.org/attachment.cgi?id=137615&action=edit
Screenshot

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

[konsole] [Bug 435675] File association is overriding http(s)/ftp links in konsole

2021-04-14 Thread Justin Zobel
https://bugs.kde.org/show_bug.cgi?id=435675

--- Comment #6 from Justin Zobel  ---
(In reply to Jonathan Marten from comment #5)
> The behavious of opening http/https links may have been inadvertently
> changed by https://invent.kde.org/network/konqueror/-/merge_requests/67. 
> Are you able to you investigate:
> 
> 1. With the link that exhibits the anomalous behaviour in Konsole, execute
> "kfmclient openURL " with the same URL and see if the behaviour is the
> same.
> 
> 2. Check whether $XDG_CONFIG_HOME/kdeglobals contains an entry
> [General]
> BrowserApplication=...
> 
> 3. Check whether there are any debug messages from
> ClientApp::createNewWindow() in ~/.xsession-errors or similar (you may need
> to enable debug info for the "org.kde.kfmclient" category).

1. This opened the URL (https://letsencrypt.org/donate) in konqueror but with a
dialog above it asking where I'd like to open it (will attach after this
comment)

2. $XDG_CONFIG_HOME doesn't have any value. (I did echo $XDG_CONFIG_HOME to
check). In ~/.config/kdeglobals there's no BrowserApplication= setting under
[General]

3. ~/.xsession-errors is empty. Can you please provide info on how to enable
debugging as mentioned?

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

[kwin] [Bug 435742] [Plasma Mobile] Crash in kwin_wayland

2021-04-14 Thread Richard Ullger
https://bugs.kde.org/show_bug.cgi?id=435742

--- Comment #1 from Richard Ullger  ---
Created attachment 137614
  --> https://bugs.kde.org/attachment.cgi?id=137614&action=edit
kde-env-master.sh file installed by kdesrc-build

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

[kwin] [Bug 435742] New: [Plasma Mobile] Crash in kwin_wayland

2021-04-14 Thread Richard Ullger
https://bugs.kde.org/show_bug.cgi?id=435742

Bug ID: 435742
   Summary: [Plasma Mobile] Crash in kwin_wayland
   Product: kwin
   Version: git master
  Platform: Compiled Sources
OS: Linux
Status: REPORTED
  Severity: crash
  Priority: NOR
 Component: wayland-generic
  Assignee: kwin-bugs-n...@kde.org
  Reporter: rull...@gmail.com
  Target Milestone: ---

Created attachment 137613
  --> https://bugs.kde.org/attachment.cgi?id=137613&action=edit
.xsession file copied from
/home/richard/kde/src/kdesrc-build/sample-xsession.sh (modified)

SUMMARY
Attempting to test plasma mobile on a pinetab, built from git master using
kdesrc-build.
I can run a plasma wayland session installed from the archlinuxarm repos
without problem.


STEPS TO REPRODUCE
1. Build plasma and frameworks using kdesrc-build
2. Start a plasma mobile session

OBSERVED RESULT
Executing .xsession from console:
No backend specified through command line argument, trying auto resolution
Compositor crashed, respawning
(Repeats 10 times)
startplasmacompositor: Shutting down...
startplasmacompositor: Done.

Coredump in kwin_wayland

EXPECTED RESULT
Plasma mobile session should start

SOFTWARE/OS VERSIONS
Linux: Archlinux Arm linux-pine64 5.10.19-4
KDE Plasma Version: git master (kdesrc-build)
KDE Frameworks Version: git master (kdesrc-build)
Qt Version: 5.15.2 from archlinuxarm repos

ADDITIONAL INFORMATION

Specifically built as specified in
https://community.kde.org/Get_Involved/development#Plasma plus any dependencies
determined by kdesrc-build:
plasma-workspace plasma-framework plasma-nm plasma-pa
plasma-workspace-wallpapers kdeplasma-addons krunner milou kwin kscreen breeze
plasma-browser-integration xdg-desktop-portal-kde

Specifically built as specified in
https://community.kde.org/Get_Involved/development#Plasma_Mobile plus any
dependencies determined by kdesrc-build:
plasma-nano plasma-phone-components plasma-settings

Created /usr/share/wayland-sessions/kdesrc-build.desktop as specified in
https://docs.kde.org/trunk5/en/kdesrc-build/kdesrc-build/environment.html
[Desktop Entry]
Type=XSession
Exec=/home/richard/.xsession
Name=Plasma Wayland (kdesrc-build)

.xsession file copied from
/home/richard/kde/src/kdesrc-build/sample-xsession.sh (modified - see attached
file)

.config/kde-env-master.sh installed by kdesrc-build

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

[Ruqola] [Bug 435409] Honor message permissions like edit or delete

2021-04-14 Thread Angel Docampo
https://bugs.kde.org/show_bug.cgi?id=435409

--- Comment #9 from Angel Docampo  ---
Create Public Channels
Create Direct Messages
Create Private Channels
Create Personal Access Tokens
delete-own-message
Leave Channels
Leave Private Groups
Mention All
Mention Here
Preview Public Channel
start-discussion
start-discussion-other-user
View Public Channel
View Direct Messages
View History
View Outside Room
View Private Room

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

[systemsettings] [Bug 435733] sys settings crashed upon open

2021-04-14 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=435733

Nate Graham  changed:

   What|Removed |Added

 Resolution|FIXED   |---
 Status|NEEDSINFO   |REPORTED
Version|unspecified |5.18.7

--- Comment #4 from Nate Graham  ---
Thanks.

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

[kdenlive] [Bug 435741] "failed to load producer" hang, endless loop/recursion on project load

2021-04-14 Thread Marc Brevoort
https://bugs.kde.org/show_bug.cgi?id=435741

Marc Brevoort  changed:

   What|Removed |Added

Summary|"failed to load producer"   |"failed to load producer"
   |endless loop/recursion on   |hang, endless
   |project load|loop/recursion on project
   ||load

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

[kdenlive] [Bug 435741] "failed to load producer" endless loop/recursion on project load

2021-04-14 Thread Marc Brevoort
https://bugs.kde.org/show_bug.cgi?id=435741

--- Comment #1 from Marc Brevoort  ---
Created attachment 137612
  --> https://bugs.kde.org/attachment.cgi?id=137612&action=edit
file resulting in the issue

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

[systemsettings] [Bug 414077] Purge the index when indexing is disabled

2021-04-14 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=414077

--- Comment #3 from Bug Janitor Service  ---
A possibly relevant merge request was started @
https://invent.kde.org/plasma/plasma-desktop/-/merge_requests/427

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

[systemsettings] [Bug 405307] Access baloo's status from System Settings

2021-04-14 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=405307

--- Comment #7 from Bug Janitor Service  ---
A possibly relevant merge request was started @
https://invent.kde.org/plasma/plasma-desktop/-/merge_requests/427

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

[systemsettings] [Bug 374474] Add buttons which pause and resume baloo indexing

2021-04-14 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=374474

--- Comment #10 from Bug Janitor Service  ---
A possibly relevant merge request was started @
https://invent.kde.org/plasma/plasma-desktop/-/merge_requests/427

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

[kdenlive] [Bug 435741] New: "failed to load producer" endless loop/recursion on project load

2021-04-14 Thread Marc Brevoort
https://bugs.kde.org/show_bug.cgi?id=435741

Bug ID: 435741
   Summary: "failed to load producer" endless loop/recursion on
project load
   Product: kdenlive
   Version: 20.12.3
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: User Interface
  Assignee: j...@kdenlive.org
  Reporter: kleine...@hotmail.com
  Target Milestone: ---

SUMMARY


STEPS TO REPRODUCE
1. Edit some video with kdenlive
2. Quit kdenlive
3. Attempt to load video again at a future date (kdenlive started from terminal
console as "kdenlive filename.kdenlive"

OBSERVED RESULT
- Video loading hang.
- 100% CPU usage
- Climbing memory usage until machine is out of memory
- console output shows an endless loop,

MLT: "[producer_xml] failed to load producer
\"/home/mrjb/Videos/forthenoms/s01e06_poppadoms/rawvids/IMG_4455.JPG\""
MLT: "[producer_xml] failed to load producer
\"/home/mrjb/Videos/forthenoms/s01e06_poppadoms/rawvids/IMG_4401.JPG\""
MLT: "[producer_xml] failed to load producer
\"/home/mrjb/Videos/forthenoms/s01e06_poppadoms/rawvids/IMG_4421.JPG\""
MLT: "[producer_xml] failed to load producer
\"/home/mrjb/Videos/forthenoms/s01e06_poppadoms/rawvids/approx_20_grams.png\""
MLT: "[producer_xml] failed to load producer
\"/home/mrjb/Videos/forthenoms/s01e06_poppadoms/rawvids/IMG_4429.JPG\""
MLT: "[producer_xml] failed to load producer
\"/home/mrjb/Videos/forthenoms/s01e06_poppadoms/rawvids/IMG_4431.JPG\""
MLT: "[producer_xml] failed to load producer
\"/home/mrjb/Videos/forthenoms/s01e06_poppadoms/rawvids/IMG_4432.JPG\""
MLT: "[producer_xml] failed to load producer
\"/home/mrjb/Videos/forthenoms/s01e06_poppadoms/rawvids/IMG_4433.JPG\""
MLT: "[producer_xml] failed to load producer
\"/home/mrjb/Videos/forthenoms/s01e06_poppadoms/rawvids/IMG_4437.JPG\""
MLT: "[producer_xml] failed to load producer
\"/home/mrjb/Videos/forthenoms/s01e06_poppadoms/rawvids/IMG_4438.JPG\""
MLT: "[producer_xml] failed to load producer
\"/home/mrjb/Videos/forthenoms/s01e06_poppadoms/rawvids/IMG_4440.JPG\""
MLT: "[producer_xml] failed to load producer
\"/home/mrjb/Videos/forthenoms/s01e06_poppadoms/rawvids/IMG_4446.JPG\""
MLT: "[producer_xml] failed to load producer
\"/home/mrjb/Videos/forthenoms/s01e06_poppadoms/rawvids/IMG_4448.JPG\""
MLT: "[producer_xml] failed to load producer
\"/home/mrjb/Videos/forthenoms/s01e06_poppadoms/rawvids/IMG_4450.JPG\""
MLT: "[producer_xml] failed to load producer
\"/home/mrjb/Videos/forthenoms/s01e06_poppadoms/rawvids/IMG_4451.JPG\""
MLT: "[producer_xml] failed to load producer
\"/home/mrjb/Videos/forthenoms/s01e06_poppadoms/rawvids/IMG_4455.JPG\""
MLT: "[producer_xml] failed to load producer
\"/home/mrjb/Videos/forthenoms/s01e06_poppadoms/rawvids/IMG_4401.JPG\""
MLT: "[producer_xml] failed to load producer
\"/home/mrjb/Videos/forthenoms/s01e06_poppadoms/rawvids/IMG_4421.JPG\""
MLT: "[producer_xml] failed to load producer
\"/home/mrjb/Videos/forthenoms/s01e06_poppadoms/rawvids/approx_20_grams.png\""


EXPECTED RESULT
No endless loop, video loads as expected.

SOFTWARE/OS VERSIONS
Windows: 
macOS: 
Linux/KDE Plasma: kdenlive 20.12.3 (bug also present in older version, hence
upgrade to latest from PPA )

(available in About System)
KDE Plasma Version: I haven't a clue.
KDE Frameworks 5.68.0
Qt 5.12.8 (built against 5.12.8)

The xcb windowing system

ADDITIONAL INFORMATION
Tried running this in gdb and doing a ctrl-c during the loop
which gave me a stack trace looking like this -

Thread 1 "kdenlive" received signal SIGINT, Interrupt.
0x7fffdc7427e1 in ?? () from /usr/lib/x86_64-linux-gnu/mlt/libmltxml.so
(gdb) bt
#0  0x7fffdc7427e1 in  () at /usr/lib/x86_64-linux-gnu/mlt/libmltxml.so
#1  0x7fffcbc38ddf in xmlParseCharData ()
at /lib/x86_64-linux-gnu/libxml2.so.2
#2  0x7fffcbc49683 in xmlParseContent ()
at /lib/x86_64-linux-gnu/libxml2.so.2
#3  0x7fffcbc4af10 in xmlParseDocument ()
at /lib/x86_64-linux-gnu/libxml2.so.2
#4  0x7fffdc7471d7 in producer_xml_init ()
at /usr/lib/x86_64-linux-gnu/mlt/libmltxml.so
#5  0x76cff2c2 in mlt_factory_producer ()
at /lib/x86_64-linux-gnu/libmlt.so.6
#6  0x7fffdc7f11d1 in  () at /usr/lib/x86_64-linux-gnu/mlt/libmltcore.so
#7  0x7fffdc7f15a8 in producer_loader_init ()
at /usr/lib/x86_64-linux-gnu/mlt/libmltcore.so
#8  0x76cff2c2 in mlt_factory_producer ()
at /lib/x86_64-linux-gnu/libmlt.so.6
#9  0x7fffdc7f0a6c in producer_consumer_init ()
at /usr/lib/x86_64-linux-gnu/mlt/libmltcore.so
#10 0x76cff2c2 in mlt_factory_producer ()
at /lib/x86_64-linux-gnu/libmlt.so.6
#11 0x7fffdc7f0faa in  () at /usr/lib/x86_64-linux-gnu/mlt/libmltcore.so
#12 0x7fffdc7f15a8 in producer_loader_init ()
at /usr/lib/x86_64-linux-gnu/mlt/libmltcore.so
--Type  for more, q to quit, c to continue without paging--
#13 0x76cff2c2 in mlt_factory_producer ()

[systemsettings] [Bug 435733] sys settings crashed upon open

2021-04-14 Thread Sheila Flanagan
https://bugs.kde.org/show_bug.cgi?id=435733

--- Comment #3 from Sheila Flanagan  ---
(In reply to Nate Graham from comment #2)
> Darn, no idea what this could be based on the backtrace. :/
> 
> Are you using Kubuntu, or Ubuntu with KDE packages manually installed? And
> which version of Ubuntu/Kubuntu?

Kubuntu:
>
> LSB Version:
> core-11.1.0ubuntu2-noarch:printing-11.1.0ubuntu2-noarch:security-11.1.0ubuntu2-noarch
> Distributor ID: Ubuntu
> Description:Ubuntu 20.04.2 LTS
> Release:20.04
> Codename:   focal

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

[kwayland-integration] [Bug 409795] KRunner Crashed At Wayland Session

2021-04-14 Thread Alberto Díaz López
https://bugs.kde.org/show_bug.cgi?id=409795

Alberto Díaz López  changed:

   What|Removed |Added

 Resolution|WAITINGFORINFO  |FIXED
 Status|NEEDSINFO   |RESOLVED

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

[kwayland-integration] [Bug 409795] KRunner Crashed At Wayland Session

2021-04-14 Thread Alberto Díaz López
https://bugs.kde.org/show_bug.cgi?id=409795

--- Comment #2 from Alberto Díaz López  ---
(In reply to Alexander Lohnau from comment #1)
> Is this still reproducible in Plasma 5.21?

No, sorry, you're totally right, I totally forgot about this bug, irresponsible
by my part, true and forgot to close it. I think it's solved since Plasma
5.17/5.18, so sorry about that :(.

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

[Spectacle] [Bug 409798] Spectacle Copy To Clipboard Doesn't Work Properly Under Wayland Session

2021-04-14 Thread Alberto Díaz López
https://bugs.kde.org/show_bug.cgi?id=409798

--- Comment #15 from Alberto Díaz López  ---
(In reply to Lewis Lakerink from comment #14)
> Yea +1 for this still persisting. Spectacle 20.11.90 on wayland is copying a
> 0x0 image to the clipboard (according to klipper) - an image which can not
> be pasted.
> 
> I suspect the 0x0 image is a separate bug to the initial bug reported under
> this ticket.

I think this issue is fixed, the only issue relatively related that I opened
https://bugs.kde.org/show_bug.cgi?id=421974 this other bug, because the issue I
experiment is that under the Wayland session, the screenshot is not
automatically copied to the clipboard. But this issue was closed a long time
ago, as far as I can tell/remember.

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

[kwin] [Bug 435740] New: Brightness/volume indicator flying around

2021-04-14 Thread Leonardo
https://bugs.kde.org/show_bug.cgi?id=435740

Bug ID: 435740
   Summary: Brightness/volume indicator flying around
   Product: kwin
   Version: unspecified
  Platform: Neon Packages
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: kwin-bugs-n...@kde.org
  Reporter: leonei...@gmail.com
  Target Milestone: ---

The new Brightness/volume indicator is beautiful and less intrusive. Great job!
 It's good not being in the middle of the screen like it was. 
But it's position should be more at the bottom for stetic reasons and will get
LESS intrusive. (or have an option to choose its position) 
It's like its lost. 

When using two screens it pops in  the screen 1 or 2. I can't understand its
logic to choose which screen it will pop. Looks like it tries to follow the
mouse but isn't consistent. Would be great if it follows the mouse, poping in
the screen which the mouse cursor is.

Thanks!



Operating System: KDE neon 5.21
KDE Plasma Version: 5.21.4
KDE Frameworks Version: 5.81.0
Qt Version: 5.15.2
Kernel Version: 5.4.0-71-generic
OS Type: 64-bit
Graphics Platform: X11
Processors: 8 × Intel® Core™ i5-8250U CPU @ 1.60GHz
Memory: 7.7 GiB of RAM
Graphics Processor: Mesa Intel® UHD Graphics 620

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

[plasmashell] [Bug 435739] New: pin a widget in the center of the panel, even in the presence of widgets of variable size on both sides

2021-04-14 Thread Federico Calzoni
https://bugs.kde.org/show_bug.cgi?id=435739

Bug ID: 435739
   Summary: pin a widget in the center of the panel, even in the
presence of widgets of variable size on both sides
   Product: plasmashell
   Version: master
  Platform: Kubuntu Packages
OS: Linux
Status: REPORTED
  Severity: minor
  Priority: NOR
 Component: Panel
  Assignee: plasma-b...@kde.org
  Reporter: federicocalzon...@gmail.com
  Target Milestone: 1.0

SUMMARY
In the presence of widgets with variable dimensions on both sides of the panel,
it seems impossible to fix the position of a third widget exactly in the
center: when one of the two widgets on the sides changes size, the widget in
the center moves.

STEPS TO REPRODUCE
1. add a new empty panel (in my case in the top border), add 2 widget of
variable dimension, (like Global Menu, active window control, window app menu,
or window buttons). In my case I have "Global menù" on the left corner and
"window button" on the right (about window button, from the widget settings I
have set it to disappear when the window is not maximized).

2. insert a third widget, in the center (in my case Digital clock)

3. add 2 spacer, one on each side: one to the left of the clock, and one to the
right.
if the spacers are flexible in size, we notice that when one of the widgets at
the edges changes size (changing window in the case of the global menu or
maximizing a window in the case of Window Button), the clock moves a little.
if I set one of the two spacers to a fixed size or both to a fixed size I get
worse results.

OBSERVED RESULT
The widget placed in the center moves with the change in size of the widgets at
the edges, and it is not always centered in the center of the panel.

EXPECTED RESULT
The widget placed in the center remains fixed and exactly centered even if the
size of the widgets at the edges changes.

SOFTWARE/OS VERSIONS
Operating System: Kubuntu 20.10
KDE Plasma Version: 5.19.5
KDE Frameworks Version: 5.74.0
Qt Version: 5.14.2
Kernel Version: 5.8.0-49-generic
OS Type: 64-bit

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

  1   2   3   4   >