[kwin] [Bug 442936] wayland: Xwayland application contents disappearing upon changing some system settings

2021-10-03 Thread Vlad Zahorodnii
https://bugs.kde.org/show_bug.cgi?id=442936

Vlad Zahorodnii  changed:

   What|Removed |Added

  Latest Commit|https://invent.kde.org/plas |https://invent.kde.org/plas
   |ma/kwin/commit/8ac93a59ffb1 |ma/kwin/commit/626b5b4c0d30
   |a09bf6df46c7012bea7910e6b88 |b0bd040f8fc1da582a6c782cf5a
   |3   |9

--- Comment #10 from Vlad Zahorodnii  ---
Git commit 626b5b4c0d30b0bd040f8fc1da582a6c782cf5a9 by Vlad Zahorodnii.
Committed on 04/10/2021 at 05:58.
Pushed by vladz into branch 'Plasma/5.23'.

scene: Handle Xwayland windows changing surfaces

Xwayland can re-create the wl_surface if the window has been previously
unmapped.
Related: bug 426069


(cherry picked from commit 8ac93a59ffb1a09bf6df46c7012bea7910e6b883)

M  +23   -19   src/windowitem.cpp

https://invent.kde.org/plasma/kwin/commit/626b5b4c0d30b0bd040f8fc1da582a6c782cf5a9

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

[kwin] [Bug 426069] XWayland apps are occasionally not rendered when switching virtual desktops

2021-10-03 Thread Vlad Zahorodnii
https://bugs.kde.org/show_bug.cgi?id=426069

Vlad Zahorodnii  changed:

   What|Removed |Added

  Latest Commit|https://invent.kde.org/plas |https://invent.kde.org/plas
   |ma/kwin/commit/8ac93a59ffb1 |ma/kwin/commit/626b5b4c0d30
   |a09bf6df46c7012bea7910e6b88 |b0bd040f8fc1da582a6c782cf5a
   |3   |9

--- Comment #6 from Vlad Zahorodnii  ---
Git commit 626b5b4c0d30b0bd040f8fc1da582a6c782cf5a9 by Vlad Zahorodnii.
Committed on 04/10/2021 at 05:58.
Pushed by vladz into branch 'Plasma/5.23'.

scene: Handle Xwayland windows changing surfaces

Xwayland can re-create the wl_surface if the window has been previously
unmapped.
Related: bug 442936


(cherry picked from commit 8ac93a59ffb1a09bf6df46c7012bea7910e6b883)

M  +23   -19   src/windowitem.cpp

https://invent.kde.org/plasma/kwin/commit/626b5b4c0d30b0bd040f8fc1da582a6c782cf5a9

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

[kwin] [Bug 426069] XWayland apps are occasionally not rendered when switching virtual desktops

2021-10-03 Thread Vlad Zahorodnii
https://bugs.kde.org/show_bug.cgi?id=426069

--- Comment #5 from Vlad Zahorodnii  ---
Git commit a75559c39081c80c7e31e9c7324b17e7a4efb3f1 by Vlad Zahorodnii.
Committed on 04/10/2021 at 05:57.
Pushed by vladz into branch 'Plasma/5.23'.

wayland: Reset Toplevel::surfaceId after surface is created

Xwayland will re-create the wl_surface object if the X11 window is
unmapped and mapped. That, and the fact that the order in which the
WL_SURFACE_ID client message event is received and the wl_surface object
is created is undefined can cause the following bug:

* WL_SURFACE_ID is received
* the old wl_surface object is destroyed, m_surfaceId is reset to 0
* new wl_surface is created but because m_surfaceId is 0, it won't be
  associated with the x11 window

This change ensures that kwin will associate the wl_surface with x11
window by making it not reset cached surface id when the old wl_surface
is destroyed.

However, we cannot leave m_surfaceId as is because wayland aggressively
re-uses object ids so kwin can associate wrong surface with x11 window.

To prevent that, this change also makes Toplevel::setSurface() reset
cached surface id.
Related: bug 442936


(cherry picked from commit 52c9dbb487f4ac98017b83a1deee912546cbff5f)

M  +2-3src/events.cpp
M  +1-2src/toplevel.cpp
M  +4-15   src/toplevel.h
M  +2-2src/wayland_server.cpp

https://invent.kde.org/plasma/kwin/commit/a75559c39081c80c7e31e9c7324b17e7a4efb3f1

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

[kwin] [Bug 442936] wayland: Xwayland application contents disappearing upon changing some system settings

2021-10-03 Thread Vlad Zahorodnii
https://bugs.kde.org/show_bug.cgi?id=442936

--- Comment #9 from Vlad Zahorodnii  ---
Git commit a75559c39081c80c7e31e9c7324b17e7a4efb3f1 by Vlad Zahorodnii.
Committed on 04/10/2021 at 05:57.
Pushed by vladz into branch 'Plasma/5.23'.

wayland: Reset Toplevel::surfaceId after surface is created

Xwayland will re-create the wl_surface object if the X11 window is
unmapped and mapped. That, and the fact that the order in which the
WL_SURFACE_ID client message event is received and the wl_surface object
is created is undefined can cause the following bug:

* WL_SURFACE_ID is received
* the old wl_surface object is destroyed, m_surfaceId is reset to 0
* new wl_surface is created but because m_surfaceId is 0, it won't be
  associated with the x11 window

This change ensures that kwin will associate the wl_surface with x11
window by making it not reset cached surface id when the old wl_surface
is destroyed.

However, we cannot leave m_surfaceId as is because wayland aggressively
re-uses object ids so kwin can associate wrong surface with x11 window.

To prevent that, this change also makes Toplevel::setSurface() reset
cached surface id.
Related: bug 426069


(cherry picked from commit 52c9dbb487f4ac98017b83a1deee912546cbff5f)

M  +2-3src/events.cpp
M  +1-2src/toplevel.cpp
M  +4-15   src/toplevel.h
M  +2-2src/wayland_server.cpp

https://invent.kde.org/plasma/kwin/commit/a75559c39081c80c7e31e9c7324b17e7a4efb3f1

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

[kwin] [Bug 442936] wayland: Xwayland application contents disappearing upon changing some system settings

2021-10-03 Thread Vlad Zahorodnii
https://bugs.kde.org/show_bug.cgi?id=442936

Vlad Zahorodnii  changed:

   What|Removed |Added

 Resolution|--- |FIXED
  Latest Commit||https://invent.kde.org/plas
   ||ma/kwin/commit/8ac93a59ffb1
   ||a09bf6df46c7012bea7910e6b88
   ||3
 Status|ASSIGNED|RESOLVED

--- Comment #8 from Vlad Zahorodnii  ---
Git commit 8ac93a59ffb1a09bf6df46c7012bea7910e6b883 by Vlad Zahorodnii.
Committed on 04/10/2021 at 05:56.
Pushed by vladz into branch 'master'.

scene: Handle Xwayland windows changing surfaces

Xwayland can re-create the wl_surface if the window has been previously
unmapped.
Related: bug 426069

M  +23   -19   src/windowitem.cpp

https://invent.kde.org/plasma/kwin/commit/8ac93a59ffb1a09bf6df46c7012bea7910e6b883

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

[kwin] [Bug 442936] wayland: Xwayland application contents disappearing upon changing some system settings

2021-10-03 Thread Vlad Zahorodnii
https://bugs.kde.org/show_bug.cgi?id=442936

--- Comment #7 from Vlad Zahorodnii  ---
Git commit 52c9dbb487f4ac98017b83a1deee912546cbff5f by Vlad Zahorodnii.
Committed on 04/10/2021 at 05:56.
Pushed by vladz into branch 'master'.

wayland: Reset Toplevel::surfaceId after surface is created

Xwayland will re-create the wl_surface object if the X11 window is
unmapped and mapped. That, and the fact that the order in which the
WL_SURFACE_ID client message event is received and the wl_surface object
is created is undefined can cause the following bug:

* WL_SURFACE_ID is received
* the old wl_surface object is destroyed, m_surfaceId is reset to 0
* new wl_surface is created but because m_surfaceId is 0, it won't be
  associated with the x11 window

This change ensures that kwin will associate the wl_surface with x11
window by making it not reset cached surface id when the old wl_surface
is destroyed.

However, we cannot leave m_surfaceId as is because wayland aggressively
re-uses object ids so kwin can associate wrong surface with x11 window.

To prevent that, this change also makes Toplevel::setSurface() reset
cached surface id.
Related: bug 426069

M  +2-3src/events.cpp
M  +1-2src/toplevel.cpp
M  +4-15   src/toplevel.h
M  +2-2src/wayland_server.cpp

https://invent.kde.org/plasma/kwin/commit/52c9dbb487f4ac98017b83a1deee912546cbff5f

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

[kwin] [Bug 426069] XWayland apps are occasionally not rendered when switching virtual desktops

2021-10-03 Thread Vlad Zahorodnii
https://bugs.kde.org/show_bug.cgi?id=426069

--- Comment #4 from Vlad Zahorodnii  ---
Git commit 52c9dbb487f4ac98017b83a1deee912546cbff5f by Vlad Zahorodnii.
Committed on 04/10/2021 at 05:56.
Pushed by vladz into branch 'master'.

wayland: Reset Toplevel::surfaceId after surface is created

Xwayland will re-create the wl_surface object if the X11 window is
unmapped and mapped. That, and the fact that the order in which the
WL_SURFACE_ID client message event is received and the wl_surface object
is created is undefined can cause the following bug:

* WL_SURFACE_ID is received
* the old wl_surface object is destroyed, m_surfaceId is reset to 0
* new wl_surface is created but because m_surfaceId is 0, it won't be
  associated with the x11 window

This change ensures that kwin will associate the wl_surface with x11
window by making it not reset cached surface id when the old wl_surface
is destroyed.

However, we cannot leave m_surfaceId as is because wayland aggressively
re-uses object ids so kwin can associate wrong surface with x11 window.

To prevent that, this change also makes Toplevel::setSurface() reset
cached surface id.
Related: bug 442936

M  +2-3src/events.cpp
M  +1-2src/toplevel.cpp
M  +4-15   src/toplevel.h
M  +2-2src/wayland_server.cpp

https://invent.kde.org/plasma/kwin/commit/52c9dbb487f4ac98017b83a1deee912546cbff5f

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

[kwin] [Bug 426069] XWayland apps are occasionally not rendered when switching virtual desktops

2021-10-03 Thread Vlad Zahorodnii
https://bugs.kde.org/show_bug.cgi?id=426069

Vlad Zahorodnii  changed:

   What|Removed |Added

 Resolution|--- |FIXED
  Latest Commit||https://invent.kde.org/plas
   ||ma/kwin/commit/8ac93a59ffb1
   ||a09bf6df46c7012bea7910e6b88
   ||3
 Status|REPORTED|RESOLVED

--- Comment #3 from Vlad Zahorodnii  ---
Git commit 8ac93a59ffb1a09bf6df46c7012bea7910e6b883 by Vlad Zahorodnii.
Committed on 04/10/2021 at 05:56.
Pushed by vladz into branch 'master'.

scene: Handle Xwayland windows changing surfaces

Xwayland can re-create the wl_surface if the window has been previously
unmapped.
Related: bug 442936

M  +23   -19   src/windowitem.cpp

https://invent.kde.org/plasma/kwin/commit/8ac93a59ffb1a09bf6df46c7012bea7910e6b883

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

[plasmashell] [Bug 443280] Press enter in "Panel width/height" spinbox does not adjust the position of the config bar

2021-10-03 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=443280

Bug Janitor Service  changed:

   What|Removed |Added

 Status|REPORTED|ASSIGNED
 Ever confirmed|0   |1

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

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

[plasmashell] [Bug 443280] New: Press enter in "Panel width/height" spinbox does not adjust the position of the config bar

2021-10-03 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=443280

Bug ID: 443280
   Summary: Press enter in "Panel width/height" spinbox does not
adjust the position of the config bar
   Product: plasmashell
   Version: master
  Platform: openSUSE RPMs
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: Panel
  Assignee: plasma-b...@kde.org
  Reporter: qydwhotm...@gmail.com
  Target Milestone: 1.0

SUMMARY
When a panel enters edit mode, type a number in the spinbox and then press
enter, the panel thickness is updated, but the position of the config bar still
stays in the original position.

STEPS TO REPRODUCE
1. Right click any panel, and click "Enter Edit Mode" in the menu.
2. Type a new number in the width/height spinbox.
3. Press Enter.

OBSERVED RESULT
The position of the config bar does not follow the panel.

EXPECTED RESULT
The position of the config bar should follow the panel.

SOFTWARE/OS VERSIONS
Operating System: openSUSE Tumbleweed 20210929
KDE Plasma Version: 5.23.80
KDE Frameworks Version: 5.87.0
Qt Version: 5.15.2
Kernel Version: 5.14.6-1-default (64-bit)
Graphics Platform: X11
Processors: 8 × AMD Ryzen 7 4700U with Radeon Graphics
Memory: 15.0 GiB of RAM
Graphics Processor: AMD RENOIR

ADDITIONAL INFORMATION
Information for package plasma5-desktop:

Repository : unstable-kde-frameworks
Name   : plasma5-desktop
Version: 5.23.80git.20211001T180006~dd5db629e-ku.11.3
Arch   : x86_64
Vendor : obs://build.opensuse.org/KDE:Unstable
Installed Size : 18.1 MiB
Installed  : Yes
Status : up-to-date
Source package :
plasma5-desktop-5.23.80git.20211001T180006~dd5db629e-ku.11.3.src
Summary: The KDE Plasma Workspace Components
Description: 
This package contains the basic packages for a Plasma workspace.

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

[Discover] [Bug 443040] Discover crashes on launch in Attica::ProviderManager::parseProviderFile()

2021-10-03 Thread Pat McInnes
https://bugs.kde.org/show_bug.cgi?id=443040

--- Comment #5 from Pat McInnes  ---
(In reply to Nate Graham from comment #3)
> Do you have networkmanager installed but disabled, by any chance?

No. I do not have Network Manager installed - not that I would know how to
confirm this. There is nothing in the Applications list or search results.

Could you please confirm / explain how to install this - since I cannot access
Discover

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

[Discover] [Bug 443040] Discover crashes on launch in Attica::ProviderManager::parseProviderFile()

2021-10-03 Thread Pat McInnes
https://bugs.kde.org/show_bug.cgi?id=443040

--- Comment #4 from Pat McInnes  ---
No. I do not have Network Manager installed - not that I would know how to
confirm this. There is nothing in the Applications list or search results.

Could you please confirm / explain how to install this - since I cannot access
Discover

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

[kwin] [Bug 443247] Visual glitch in the animation for the Desktop Grid effect

2021-10-03 Thread Kishore Gopalakrishnan
https://bugs.kde.org/show_bug.cgi?id=443247

Kishore Gopalakrishnan  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #1 from Kishore Gopalakrishnan  ---


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

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

[kwin] [Bug 442554] Missing right portion during Desktop Grid effect

2021-10-03 Thread Kishore Gopalakrishnan
https://bugs.kde.org/show_bug.cgi?id=442554

Kishore Gopalakrishnan  changed:

   What|Removed |Added

 CC||kishor...@gmail.com

--- Comment #3 from Kishore Gopalakrishnan  ---
*** Bug 443247 has been marked as a duplicate of this bug. ***

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

[lattedock] [Bug 442228] Latte-dock causes Microsoft Edge to crash

2021-10-03 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=442228

--- 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.

[lattedock] [Bug 442675] [feature] - new indicators API in order to be able to be drawn more far to panel background roundness

2021-10-03 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=442675

--- Comment #15 from doncb...@gmail.com ---
Created attachment 142131
  --> https://bugs.kde.org/attachment.cgi?id=142131=edit
plasma panel (left) floating latte dock (right)

Even margins on all sides of indicators is now possible!

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

[lattedock] [Bug 442675] [feature] - new indicators API in order to be able to be drawn more far to panel background roundness

2021-10-03 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=442675

--- Comment #14 from doncb...@gmail.com ---
(In reply to Michail Vourlakos from comment #13)

> none of these designs describes how the panel background corner works now
> with indicators or I can not understand them fully.

Yes, it was a question for latte in the long run. I was asking if more
functionality and easier configuration would be possible with a design like
that as opposed to the present.

> It is a per-indicator option that each indicator needs to set for its
> preference and it is a percentage because items auto-size adjustment case
> should also be considered.

First, I would like to thank you for finally allowing KDE to have a heavily
customizable round dock that could resemble Gnome's or macOS'. I think it has
been too long that we have not had such a thing.

Second, my review: It is definitely possible now to achieve the look, as I have
shown in the screenshot. I cannot get the theme-defined shadows or corners to
show up and latte looks very messed up. It may be neon related.

Anyway, I am a bit frustrated that there isn't a more straightforward way of
positioning the things. I found myself inching along the sliders at 1%
increments to get everything right. I feel that an easier, top-down approach
may be better where margins are all set to be equal and that amount can be
adjusted from a single slider. It requires a bit of thinking however, and would
require increased integration with indicators.

However, this is more than enough. A configuration can be made and the style
will be preserved for plenty of users to access without having to deal with the
positioning.

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

[krita] [Bug 443279] New: Feature Request: Next / Previous Brush, Opacity Toggle Hotkey

2021-10-03 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=443279

Bug ID: 443279
   Summary: Feature Request: Next / Previous Brush, Opacity Toggle
Hotkey
   Product: krita
   Version: 5.0.0-beta1
  Platform: unspecified
OS: Microsoft Windows
Status: REPORTED
  Severity: wishlist
  Priority: NOR
 Component: Shortcuts and Canvas Input Settings
  Assignee: krita-bugs-n...@kde.org
  Reporter: cakeofho...@gmail.com
  Target Milestone: ---

Hi Krita Team,

I've been looking for a Photoshop alternative for a long time and recently
tried Krita because of the upcoming 5.0 release. I'm really enjoying how much
more robust the brush engine is.

I'd like to request two sets of hotkeys that I use quite often in Photoshop
that help a lot with the speed of my workflow: Hotkeys for Next and Previous
Brushes and an opacity toggle hotkey for the current brush.

Thanks for all your hard work.

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

[kwin] [Bug 443278] New: Right clicking desktop icons on second monitor pops up menu on first monitor

2021-10-03 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=443278

Bug ID: 443278
   Summary: Right clicking desktop icons on second monitor pops up
menu on first monitor
   Product: kwin
   Version: 5.22.4
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: multi-screen
  Assignee: kwin-bugs-n...@kde.org
  Reporter: redartofc...@gmail.com
  Target Milestone: ---

Created attachment 142130
  --> https://bugs.kde.org/attachment.cgi?id=142130=edit
shows the right click bug

SUMMARY
Right clicking desktop icons on second monitor pops up menu on first monitor

STEPS TO REPRODUCE
1. have some desktop folders/file icons visible on second monitor (right side)
2. right click on them
3. the right click menu pops up on the left monitor

OBSERVED RESULT
the right click popup menu is on left monitor and i have to bring my cursor to
this monitor to interact with that menu.

EXPECTED RESULT
the right click popup menu should be where i click on the icons on right
monitor

SOFTWARE/OS VERSIONS
Linux: kernel 5.10.66
(available in About System)
KDE Plasma Version: 5.22.5
KDE Frameworks Version: 5.86.0
Qt Version: 5.15.2

ADDITIONAL INFORMATION
I uploaded a recording. the left monitor has the while/purple minimal
wallpaper, while right side you can see second monitor with endeavour os
wallpaper and desktop icons. I only recorded half of the first monitor which
should be enough to describe the situation. 

This is not really important. but thought i should report it, so its atleast
documented somewhere.

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

[plasmashell] [Bug 443221] 'sleep' sometimes fails to put laptop to sleep

2021-10-03 Thread Mariusz Libera
https://bugs.kde.org/show_bug.cgi?id=443221

--- Comment #2 from Mariusz Libera  ---
(In reply to David Edmundson from comment #1)
> Please test with  systemctl suspend

As I wrote in the report 'systemctl suspend' works every time. Is there
something else I can do to help debug this?

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

[plasmashell] [Bug 443241] menu cuts off content by 1 pixel

2021-10-03 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=443241

--- Comment #2 from doncb...@gmail.com ---
(In reply to David Edmundson from comment #1)

I like to think of representing a variety of themes properly as yet another
amazing feature of plasma.

I'm wondering if it has anything to do with the separator line between the
panel and attached plasmoids.

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

[kde] [Bug 443058] The font on windows to add/edit Activities is totally invisible

2021-10-03 Thread Chris
https://bugs.kde.org/show_bug.cgi?id=443058

Chris  changed:

   What|Removed |Added

 Status|NEEDSINFO   |REPORTED
 Resolution|WAITINGFORINFO  |---

--- Comment #6 from Chris  ---
It does seems only that particular windows.

The rest of the system setting pages works perfectly. I don't have any issue
with other system setting pages.

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

[kwin] [Bug 443277] New: App windows flickering after waking up from sleep

2021-10-03 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=443277

Bug ID: 443277
   Summary: App windows flickering after waking up from sleep
   Product: kwin
   Version: 5.22.90
  Platform: Neon Packages
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: kwin-bugs-n...@kde.org
  Reporter: techxga...@outlook.com
  Target Milestone: ---

SUMMARY
This doesn't immediately happen, but when I open another window, the screen
flickers for a while.  Clicking seems to make it go away.

STEPS TO REPRODUCE
1. Put computer to sleep
2. Wake it up

OBSERVED RESULT
The desktop would wake up normally.  However, when you decide to open another
window, that's when the flicker happens.

EXPECTED RESULT
App windows shouldn't have to flicker like that

SOFTWARE/OS VERSIONS
Operating System: KDE neon Testing Edition
KDE Plasma Version: 5.22.90
KDE Frameworks Version: 5.87.0
Qt Version: 5.15.3
Kernel Version: 5.13.0-7614-generic (64-bit)
Graphics Platform: X11
Processors: 4 × Intel® Core™ i5-6500 CPU @ 3.20GHz
Memory: 15.6 GiB of RAM
Graphics Processor: NVIDIA GeForce GTX 1060 6GB/PCIe/SSE2

ADDITIONAL INFORMATION
I currently don't have Force Composition Pipeline enabled on my GPU

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

[kcalc] [Bug 443276] New: KCalc v19.12.3 - 500+200*2=1000

2021-10-03 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=443276

Bug ID: 443276
   Summary: KCalc  v19.12.3 - 500+200*2=1000
   Product: kcalc
   Version: 19.12
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: ete...@alum.rit.edu
  Reporter: vmel...@yahoo.com
  Target Milestone: ---

SUMMARY
I have KCalc v19.12.3 on Kubuntu 20.04
If I do
500 (pasted) + 200 (pasted) * 2
I get 1000.

If I do
500(pasted) + 2 * 200 (pasted)
I get 900.

STEPS TO REPRODUCE
1. Into KCalc, I paste 500
2. then, I click +
3. I paste 200
4. then, I click *
5. then, I click 2
6. then, I click =
7. KCalc shows 1000

OBSERVED RESULT
If I do
500 (pasted) + 200 (pasted) * 2
I get 1000.


EXPECTED RESULT
900

SOFTWARE/OS VERSIONS
Windows: 
macOS: 
Linux/KDE Plasma: Kubuntu 20.04
(available in About System)
KDE Plasma Version: 5.18.5
KDE Frameworks Version: 5.68.0
Qt Version: 5.12.8

ADDITIONAL INFORMATION

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

[yakuake] [Bug 443275] Slide effect is broken after the first toggling on wayland

2021-10-03 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=443275

--- Comment #1 from tr...@yandex.com ---
> 2. Press F2 twice to show then hide it. Slide effect works as expected

Sorry, I meant F12 (by default)

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

[plasmashell] [Bug 443076] item under mouse pointer is launched instead of the first search result

2021-10-03 Thread Noah Davis
https://bugs.kde.org/show_bug.cgi?id=443076

--- Comment #3 from Noah Davis  ---
Will be fixed by
https://invent.kde.org/plasma/plasma-desktop/-/merge_requests/573

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

[yakuake] [Bug 443275] Slide effect is broken after the first toggling on wayland

2021-10-03 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=443275

tr...@yandex.com changed:

   What|Removed |Added

 CC||vlad.zahorod...@kde.org
   Keywords||wayland

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

[kwin] [Bug 411884] In wayland BorderlessMaximizedWindows can cause window to not receive input

2021-10-03 Thread AlexDeLorenzo.dev
https://bugs.kde.org/show_bug.cgi?id=411884

AlexDeLorenzo.dev  changed:

   What|Removed |Added

 CC||a...@alexdelorenzo.dev

--- Comment #14 from AlexDeLorenzo.dev  ---
This issue affects the excellent Window Buttons Applet[1] by Psifidotos, which
is the 4th highest rated Plasma applet on the KDE Store[2].

In order to interact with maximized windows, users can bring another window
into focus, and then switch back to the maximized window.

> I don't know why the fixes didn't get posted here,
> added manually:
> https://invent.kde.org/plasma/kwin/-/merge_requests/1167

Thanks for working on a solution, Andrey. I'm looking forward to your fix being
merged.

[1] https://github.com/psifidotos/applet-window-buttons

[2] https://store.kde.org/p/1272871(In reply to Andrey from comment #10)

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

[yakuake] [Bug 443275] New: Slide effect is broken after the first toggling on wayland

2021-10-03 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=443275

Bug ID: 443275
   Summary: Slide effect is broken after the first toggling on
wayland
   Product: yakuake
   Version: unspecified
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: h...@kde.org
  Reporter: tr...@yandex.com
  Target Milestone: ---

STEPS TO REPRODUCE
1. Launch yakuake
2. Press F2 twice to show then hide it. Slide effect works as expected
3. From now, the slide effect is broken when you press F2

OBSERVED RESULT
Slide effect does not run

EXPECTED RESULT
Slide effect runs like it does in the first toggling and on X.

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

ADDITIONAL INFORMATION

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

[kate] [Bug 442526] Kate crashed when pressing the "custom" button where you choose color for highlighted brackets.

2021-10-03 Thread Mattias Högfjäll
https://bugs.kde.org/show_bug.cgi?id=442526

--- Comment #3 from Mattias Högfjäll  ---
(In reply to Mattias Högfjäll from comment #2)
> Well that's embarrassing. I installed it just a couple of weeks ago and even
> compiled it from source to get the latest version. How on earth I manage to
> screw that up so incredible hard... well I have neither answers nor excuses.
> I do apologize. I will update immediately.

Is it Qt5 you mean by frameworks btw?

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

[kate] [Bug 442526] Kate crashed when pressing the "custom" button where you choose color for highlighted brackets.

2021-10-03 Thread Mattias Högfjäll
https://bugs.kde.org/show_bug.cgi?id=442526

--- Comment #2 from Mattias Högfjäll  ---
Well that's embarrassing. I installed it just a couple of weeks ago and even
compiled it from source to get the latest version. How on earth I manage to
screw that up so incredible hard... well I have neither answers nor excuses.
I do apologize. I will update immediately.

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

[KScreen] [Bug 443274] New: Wallpaper on secondary monitor disappears

2021-10-03 Thread JohnRCox
https://bugs.kde.org/show_bug.cgi?id=443274

Bug ID: 443274
   Summary: Wallpaper on secondary monitor disappears
   Product: KScreen
   Version: 5.22.4
  Platform: openSUSE RPMs
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: common
  Assignee: kscreen-bugs-n...@kde.org
  Reporter: johnr...@comcast.net
  Target Milestone: ---

SUMMARY
The wallpaper on a secondary monitor will disappear on reboot/power off,
leaving a black background. It can be restored in "System Settings" by
temporarily making the secondary monitor the primary.

STEPS TO REPRODUCE
1. Have a system with multiple monitors.
2. Have a wallpaper in the background on each monitor
3. Restart system several times, perhaps powering off.

OBSERVED RESULT
The monitor that is the secondary monitor will have a black background. The
wallpaper can be restored by making the secondary monitor the primary, pressing
"Apply." 


EXPECTED RESULT
Both monitors should retain their backgrounds to the previously set values on
restart/power off.

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

ADDITIONAL INFORMATION

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

[Discover] [Bug 438020] Only one K3b theme is available in Discover

2021-10-03 Thread Patrick Silva
https://bugs.kde.org/show_bug.cgi?id=438020

--- Comment #25 from Patrick Silva  ---
contents of install_manifest.txt:

/usr/include/KF5/Attica/Attica/Activity
/usr/include/KF5/Attica/Attica/AccountBalance
/usr/include/KF5/Attica/Attica/Achievement
/usr/include/KF5/Attica/Attica/Comment
/usr/include/KF5/Attica/Attica/Config
/usr/include/KF5/Attica/Attica/Content
/usr/include/KF5/Attica/Attica/Category
/usr/include/KF5/Attica/Attica/DeleteJob
/usr/include/KF5/Attica/Attica/Distribution
/usr/include/KF5/Attica/Attica/DownloadDescription
/usr/include/KF5/Attica/Attica/DownloadItem
/usr/include/KF5/Attica/Attica/Event
/usr/include/KF5/Attica/Attica/Folder
/usr/include/KF5/Attica/Attica/Forum
/usr/include/KF5/Attica/Attica/GetJob
/usr/include/KF5/Attica/Attica/HomePageEntry
/usr/include/KF5/Attica/Attica/HomePageType
/usr/include/KF5/Attica/Attica/Icon
/usr/include/KF5/Attica/Attica/ItemJob
/usr/include/KF5/Attica/Attica/KnowledgeBaseEntry
/usr/include/KF5/Attica/Attica/ListJob
/usr/include/KF5/Attica/Attica/License
/usr/include/KF5/Attica/Attica/Message
/usr/include/KF5/Attica/Attica/Metadata
/usr/include/KF5/Attica/Attica/Person
/usr/include/KF5/Attica/Attica/PrivateData
/usr/include/KF5/Attica/Attica/PostJob
/usr/include/KF5/Attica/Attica/Project
/usr/include/KF5/Attica/Attica/PutJob
/usr/include/KF5/Attica/Attica/RemoteAccount
/usr/include/KF5/Attica/Attica/BuildService
/usr/include/KF5/Attica/Attica/BuildServiceJob
/usr/include/KF5/Attica/Attica/BuildServiceJobOutput
/usr/include/KF5/Attica/Attica/ProviderManager
/usr/include/KF5/Attica/Attica/Provider
/usr/include/KF5/Attica/Attica/Publisher
/usr/include/KF5/Attica/Attica/PublisherField
/usr/include/KF5/Attica/Attica/Topic
/usr/lib/x86_64-linux-gnu/libKF5Attica.so.5.87.0
/usr/lib/x86_64-linux-gnu/libKF5Attica.so.5
/usr/lib/x86_64-linux-gnu/libKF5Attica.so
/usr/include/KF5/Attica/attica/activity.h
/usr/include/KF5/Attica/attica/accountbalance.h
/usr/include/KF5/Attica/attica/achievement.h
/usr/include/KF5/Attica/attica/comment.h
/usr/include/KF5/Attica/attica/config.h
/usr/include/KF5/Attica/attica/content.h
/usr/include/KF5/Attica/attica/category.h
/usr/include/KF5/Attica/attica/deletejob.h
/usr/include/KF5/Attica/attica/distribution.h
/usr/include/KF5/Attica/attica/downloaddescription.h
/usr/include/KF5/Attica/attica/downloaditem.h
/usr/include/KF5/Attica/attica/event.h
/usr/include/KF5/Attica/attica/folder.h
/usr/include/KF5/Attica/attica/forum.h
/usr/include/KF5/Attica/attica/getjob.h
/usr/include/KF5/Attica/attica/homepageentry.h
/usr/include/KF5/Attica/attica/homepagetype.h
/usr/include/KF5/Attica/attica/icon.h
/usr/include/KF5/Attica/attica/itemjob.h
/usr/include/KF5/Attica/attica/knowledgebaseentry.h
/usr/include/KF5/Attica/attica/listjob.h
/usr/include/KF5/Attica/attica/license.h
/usr/include/KF5/Attica/attica/message.h
/usr/include/KF5/Attica/attica/metadata.h
/usr/include/KF5/Attica/attica/person.h
/usr/include/KF5/Attica/attica/privatedata.h
/usr/include/KF5/Attica/attica/postjob.h
/usr/include/KF5/Attica/attica/project.h
/usr/include/KF5/Attica/attica/putjob.h
/usr/include/KF5/Attica/attica/remoteaccount.h
/usr/include/KF5/Attica/attica/buildservice.h
/usr/include/KF5/Attica/attica/buildservicejob.h
/usr/include/KF5/Attica/attica/buildservicejoboutput.h
/usr/include/KF5/Attica/attica/providermanager.h
/usr/include/KF5/Attica/attica/provider.h
/usr/include/KF5/Attica/attica/publisher.h
/usr/include/KF5/Attica/attica/publisherfield.h
/usr/include/KF5/Attica/attica/topic.h
/usr/include/KF5/Attica/attica/atticabasejob.h
/usr/include/KF5/Attica/attica/atticautils.h
/usr/include/KF5/Attica/attica/platformdependent.h
/usr/include/KF5/Attica/attica/platformdependent_v2.h
/usr/include/KF5/Attica/attica/version.h
/usr/include/KF5/Attica/attica/attica_export.h
/usr/share/qlogging-categories5/attica.categories
/usr/share/qlogging-categories5/attica.renamecategories
/usr/lib/x86_64-linux-gnu/qt5/mkspecs/modules/qt_Attica.pri
/usr/lib/x86_64-linux-gnu/pkgconfig/libKF5Attica.pc
/usr/lib/x86_64-linux-gnu/cmake/KF5Attica/KF5AtticaConfig.cmake
/usr/lib/x86_64-linux-gnu/cmake/KF5Attica/KF5AtticaConfigVersion.cmake
/usr/lib/x86_64-linux-gnu/cmake/KF5Attica/KF5AtticaTargets.cmake
/usr/lib/x86_64-linux-gnu/cmake/KF5Attica/KF5AtticaTargets-debug.cmake
/usr/include/KF5/attica_version.h

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

[kstars] [Bug 443273] New: Alignment module not working

2021-10-03 Thread James Barbot
https://bugs.kde.org/show_bug.cgi?id=443273

Bug ID: 443273
   Summary: Alignment module not working
   Product: kstars
   Version: unspecified
  Platform: Ubuntu Packages
OS: Linux
Status: REPORTED
  Keywords: drkonqi
  Severity: crash
  Priority: NOR
 Component: general
  Assignee: mutla...@ikarustech.com
  Reporter: james.barbot...@gmail.com
  Target Milestone: ---

Application: kstars (3.5.6 Beta)

Qt Version: 5.12.8
Frameworks Version: 5.68.0
Operating System: Linux 5.11.0-37-generic x86_64
Windowing system: X11
Distribution: Ubuntu 20.04.3 LTS

-- Information about the crash:
- What I was doing when the application crashed:
several bugs, but this particular one involves the Guide module (tonight, last
night it was the alignment module.)
Module cannot connect to camera, or something, it just sits there and sins
busy, but never takes a picture.
and then Kstars crashed.

I had it slew to a target, I ran 'align', to center the target, then when that
was succesful, I tried to start guiding, and guiding hung up unable to talk to
the camera for some reason.
This all worked last night.

2nd bug, not part of this crash, but the Scheduler isn't working.  it will
start a sequence, move to the target, then run Focus, then when Focus
completes, the 'Align' starts and just sits and spins, without ever connecting
to a camera or indicating a target.it's almost like the focus routine
doesn't let go of the camera and the camera is still busy for some reason.
that bug is  still there tonight.  the Scheduler is unusable because of it.
tonight, the whole system is unsuable becausse it won't guide.

Seems like an average of one out of every five clear nights I have, which is
usually only once a month here, the system runs without any problems and is
great.  The other four nights are wasted and result in a lot of frustration and
cussing due to something fairly random glitching and not working.

The crash can be reproduced every time.

-- Backtrace:
Application: KStars (kstars), signal: Segmentation fault
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
[Current thread is 1 (Thread 0x7f5205be0640 (LWP 1301))]

Thread 19 (Thread 0x7f51d976d700 (LWP 1378)):
#0  0x7f520a3b5aff in __GI___poll (fds=0x7f51b800c8a0, nfds=3, timeout=-1)
at ../sysdeps/unix/sysv/linux/poll.c:29
#1  0x7f5208f271d6 in ?? () from /lib/x86_64-linux-gnu/libpulse.so.0
#2  0x7f5208f18841 in pa_mainloop_poll () from
/lib/x86_64-linux-gnu/libpulse.so.0
#3  0x7f5208f18ec3 in pa_mainloop_iterate () from
/lib/x86_64-linux-gnu/libpulse.so.0
#4  0x7f5208f18f70 in pa_mainloop_run () from
/lib/x86_64-linux-gnu/libpulse.so.0
#5  0x7f5208f2711d in ?? () from /lib/x86_64-linux-gnu/libpulse.so.0
#6  0x7f5206d3e72c in ?? () from
/usr/lib/x86_64-linux-gnu/pulseaudio/libpulsecommon-13.99.so
#7  0x7f520bc10609 in start_thread (arg=) at
pthread_create.c:477
#8  0x7f520a3c2293 in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:95

Thread 18 (Thread 0x7f51b17fd700 (LWP 1355)):
#0  0x7f5209d888ed in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#1  0x7f5209d8a345 in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#2  0x7f5209d8bcbf in g_main_context_check () from
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#3  0x7f5209d8c312 in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#4  0x7f5209d8c4a3 in g_main_context_iteration () from
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#5  0x7f520ad14583 in
QEventDispatcherGlib::processEvents(QFlags) ()
from /lib/x86_64-linux-gnu/libQt5Core.so.5
#6  0x7f520acbb4db in
QEventLoop::exec(QFlags) () from
/lib/x86_64-linux-gnu/libQt5Core.so.5
#7  0x7f520aaf3785 in QThread::exec() () from
/lib/x86_64-linux-gnu/libQt5Core.so.5
#8  0x7f520cfb41a9 in ?? () from /lib/x86_64-linux-gnu/libQt5Qml.so.5
#9  0x7f520aaf49d2 in ?? () from /lib/x86_64-linux-gnu/libQt5Core.so.5
#10 0x7f520bc10609 in start_thread (arg=) at
pthread_create.c:477
#11 0x7f520a3c2293 in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:95

Thread 17 (Thread 0x7f51d11ac700 (LWP 1329)):
#0  syscall () at ../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
#1  0x7f520aaf6dd1 in QSemaphore::acquire(int) () from
/lib/x86_64-linux-gnu/libQt5Core.so.5
#2  0x7f520ace877d in QMetaObject::activate(QObject*, int, int, void**) ()
from /lib/x86_64-linux-gnu/libQt5Core.so.5
#3  0x563d6f002006 in ClientManager::connectionFailure
(this=this@entry=0x563d739c8960, _t1=, _t1@entry=0x563d739c8960)
at
./obj-x86_64-linux-gnu/kstars/KStarsLib_autogen/FRI4DANIHA/moc_clientmanager.cpp:326
#4  0x563d6f083c8b in ClientManager::serverDisconnected
(this=0x563d739c8960, exit_code=-1) at ./kstars/indi/clientmanager.cpp:278
#5  0x563d6f71e96e in INDI::BaseClientPrivate::listenINDI() ()
#6  0x563d6f71ea2e in
std::thread::_State_impl > > >::_M_run() ()
#7  

[Discover] [Bug 438020] Only one K3b theme is available in Discover

2021-10-03 Thread Aleix Pol
https://bugs.kde.org/show_bug.cgi?id=438020

--- Comment #24 from Aleix Pol  ---
can you check where it's getting installed? 

See install_manifest.txt

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

[kmail2] [Bug 443272] New: EWS account (resource) keeps going offline

2021-10-03 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=443272

Bug ID: 443272
   Summary: EWS account (resource) keeps going offline
   Product: kmail2
   Version: unspecified
  Platform: Kubuntu Packages
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: misc
  Assignee: kdepim-b...@kde.org
  Reporter: lior@llobel.online
  Target Milestone: ---

SUMMARY
I'm using the EWS plugin with an oauth2 office365 university account in kmail2
5.18.1. 
The account keeps going offline with a notification saying "Resource  is
broken.
Authentication failed ". This can cycle between offline and online. 
If needed, I can manually update the account to go online. 

SOFTWARE/OS VERSIONS
Windows: 
macOS: 
Linux/KDE Plasma: Kubuntu 21.04 - Kernel 5.11.0-37
(available in About System)
KDE Plasma Version: 5.22.5
KDE Frameworks Version: 5.86.0
Qt Version: 5.15.2

ADDITIONAL INFORMATION

Using the kde plasma backports ppa on kubuntu. But it happens also on the
native version.

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

[kdeconnect] [Bug 443271] New: Kdeconnect hijacks the clipboard when connected to another Plasma desktop

2021-10-03 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=443271

Bug ID: 443271
   Summary: Kdeconnect hijacks the clipboard when connected to
another Plasma desktop
   Product: kdeconnect
   Version: unspecified
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: common
  Assignee: albertv...@gmail.com
  Reporter: qydwhotm...@gmail.com
  Target Milestone: ---

SUMMARY
If I set up a connection with another Plasma desktop, any content I copy from
one Plasma desktop will not be pasted with Ctrl+V directly, but clipboard
history has the item. The bug is gone when the clipboard plugin is disabled.

STEPS TO REPRODUCE
1. Pair with another Plasma desktop
2. Enable "Clipboard" plugin
3. Copy some text and paste with "Ctrl+V"

OBSERVED RESULT
No text is pasted, but clipboard history has the item.

EXPECTED RESULT
Paste normally.

SOFTWARE/OS VERSIONS
Operating System: openSUSE Tumbleweed 20210929
KDE Plasma Version: 5.23.80
KDE Frameworks Version: 5.87.0
Qt Version: 5.15.2
Kernel Version: 5.14.6-1-default (64-bit)
Graphics Platform: X11
Processors: 8 × AMD Ryzen 7 4700U with Radeon Graphics
Memory: 15.0 GiB of RAM
Graphics Processor: AMD RENOIR

ADDITIONAL INFORMATION
Information for package kdeconnect-kde:
---
Repository : unstable-kde-applications
Name   : kdeconnect-kde
Version: 21.11.70git.20210926T172742~ee85a5d5-ku.20.2
Arch   : x86_64
Vendor : obs://build.opensuse.org/KDE:Unstable
Installed Size : 3.7 MiB
Installed  : Yes
Status : up-to-date
Source package :
kdeconnect-kde-21.11.70git.20210926T172742~ee85a5d5-ku.20.2.src
Summary: Integration of Android with Linux desktops
Description: 
A package for integration of Android with Linux desktops.

Current feature list:
- Clipboard share: copy from or to your desktop
- Notifications sync (4.3+): Read your Android notifications
- Multimedia remote control: Use your phone as a remote control
- WiFi connection: no USB wire or Bluetooth needed
- RSA Encryption: your information is safe

Please note you will need to install KDE Connect on Android for this app to
work:
https://play.google.com/store/apps/details?id=org.kde.kdeconnect_tp or
https://f-droid.org/en/packages/org.kde.kdeconnect_tp/

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

[plasmashell] [Bug 417523] "More options..." button of vertical Panel is hidden if I also have an always visible horizontal Panel on bottom of the screen

2021-10-03 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=417523

qydwhotm...@gmail.com changed:

   What|Removed |Added

 CC||qydwhotm...@gmail.com

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

[plasmashell] [Bug 443241] menu cuts off content by 1 pixel

2021-10-03 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=443241

qydwhotm...@gmail.com changed:

   What|Removed |Added

 CC||qydwhotm...@gmail.com

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

[plasmashell] [Bug 443270] Discover icon on task manager reacting when system settings is launched

2021-10-03 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=443270

qydwhotm...@gmail.com changed:

   What|Removed |Added

 CC||qydwhotm...@gmail.com

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

[kmymoney] [Bug 443243] I am unable to use Mysql database as data source.

2021-10-03 Thread Jack
https://bugs.kde.org/show_bug.cgi?id=443243

Jack  changed:

   What|Removed |Added

 Resolution|--- |WAITINGFORINFO
 Status|REPORTED|NEEDSINFO
 CC||ostroffjh@users.sourceforge
   ||.net

--- Comment #1 from Jack  ---
Have you read the information in the User Manual? 
https://docs.kde.org/stable5/en/kmymoney/kmymoney/details.database.html  Let us
know if you have any more specific questions, but that is the only
documentation available that I know of.

One thing you can check - Select the menu item Settings/Configure KMyMoney...
then click the Plugins icon, which is the last one on the left pane of the
dialog.  Let us know if the SQL Storage plugin is present.  Also, are you sure
you have QMySQL installed?

It would also help if you told us exactly what you have tried.  At what point
did you get that error message?

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

[plasmashell] [Bug 443036] Metabug: let keyboard shortcuts live somewhere persistent, rather than in applets

2021-10-03 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=443036

--- Comment #4 from Nate Graham  ---
That's what I've done, but it's not quite good enough because it still appears
in the expanded view.

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

[kwin] [Bug 443246] Parts of windows often get cut off in desktop grid effect

2021-10-03 Thread Patrick Silva
https://bugs.kde.org/show_bug.cgi?id=443246

Patrick Silva  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
 CC||bugsefor...@gmx.com
 Resolution|--- |DUPLICATE

--- Comment #3 from Patrick Silva  ---


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

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

[kwin] [Bug 440940] Grid effect seems broken on kwin wayland master

2021-10-03 Thread Patrick Silva
https://bugs.kde.org/show_bug.cgi?id=440940

Patrick Silva  changed:

   What|Removed |Added

 CC||kishor...@gmail.com

--- Comment #10 from Patrick Silva  ---
*** Bug 443246 has been marked as a duplicate of this bug. ***

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

[kate] [Bug 443026] segmentation fault when switching Git branches with clangd C++ LSP

2021-10-03 Thread Be
https://bugs.kde.org/show_bug.cgi?id=443026

--- Comment #3 from Be  ---
Thanks for the quick fix! I confirm this is fixed in the master branch. I am
glad I took the time to report the bug with a backtrace.

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

[plasmashell] [Bug 438839] Wayland - turning monitor off and back on causes plasmashell to make invalid xdgshell request

2021-10-03 Thread keitalbame
https://bugs.kde.org/show_bug.cgi?id=438839

keitalbame  changed:

   What|Removed |Added

 CC||sv...@nunocosta.dev

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

[plasmashell] [Bug 439321] Wayland connection error thrown

2021-10-03 Thread keitalbame
https://bugs.kde.org/show_bug.cgi?id=439321

keitalbame  changed:

   What|Removed |Added

 CC||sv...@nunocosta.dev

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

[frameworks-ktexteditor] [Bug 440764] 5.84.0: test suite is failing

2021-10-03 Thread kloczek
https://bugs.kde.org/show_bug.cgi?id=440764

--- Comment #2 from kloczek  ---
Just retested last 5.86.0 release and test suite still is failing

+ cd ktexteditor-5.86.0
+ xvfb-run -a /usr/bin/make -O -j48 V=1 VERBOSE=1 -C x86_64-redhat-linux-gnu
test ARGS=--output-on-failure
make: Entering directory
'/home/tkloczko/rpmbuild/BUILD/ktexteditor-5.86.0/x86_64-redhat-linux-gnu'
Running tests...
/usr/bin/ctest --force-new-ctest-process --output-on-failure
Test project
/home/tkloczko/rpmbuild/BUILD/ktexteditor-5.86.0/x86_64-redhat-linux-gnu
  Start  1: appstreamtest
 1/74 Test  #1: appstreamtest ...   Passed0.04
sec
  Start  2: encoding_utf8.txt_create
 2/74 Test  #2: encoding_utf8.txt_create    Passed0.12
sec
  Start  3: encoding_utf8.txt_diff
 3/74 Test  #3: encoding_utf8.txt_diff ..   Passed0.03
sec
  Start  4: encoding_latin15.txt_create
 4/74 Test  #4: encoding_latin15.txt_create .   Passed0.12
sec
  Start  5: encoding_latin15.txt_diff
 5/74 Test  #5: encoding_latin15.txt_diff ...   Passed0.03
sec
  Start  6: encoding_utf32.txt_create
 6/74 Test  #6: encoding_utf32.txt_create ...   Passed0.12
sec
  Start  7: encoding_utf32.txt_diff
 7/74 Test  #7: encoding_utf32.txt_diff .   Passed0.03
sec
  Start  8: encoding_utf16.txt_create
 8/74 Test  #8: encoding_utf16.txt_create ...   Passed0.12
sec
  Start  9: encoding_utf16.txt_diff
 9/74 Test  #9: encoding_utf16.txt_diff .   Passed0.02
sec
  Start 10: encoding_utf32be.txt_create
10/74 Test #10: encoding_utf32be.txt_create .   Passed0.09
sec
  Start 11: encoding_utf32be.txt_diff
11/74 Test #11: encoding_utf32be.txt_diff ...   Passed0.02
sec
  Start 12: encoding_utf16be.txt_create
12/74 Test #12: encoding_utf16be.txt_create .   Passed0.12
sec
  Start 13: encoding_utf16be.txt_diff
13/74 Test #13: encoding_utf16be.txt_diff ...   Passed0.03
sec
  Start 14: encoding_cyrillic_utf8.txt_create
14/74 Test #14: encoding_cyrillic_utf8.txt_create ...   Passed0.12
sec
  Start 15: encoding_cyrillic_utf8.txt_diff
15/74 Test #15: encoding_cyrillic_utf8.txt_diff .   Passed0.03
sec
  Start 16: encoding_cp1251.txt_create
16/74 Test #16: encoding_cp1251.txt_create ..   Passed0.12
sec
  Start 17: encoding_cp1251.txt_diff
17/74 Test #17: encoding_cp1251.txt_diff    Passed0.03
sec
  Start 18: encoding_koi8-r.txt_create
18/74 Test #18: encoding_koi8-r.txt_create ..   Passed0.12
sec
  Start 19: encoding_koi8-r.txt_diff
19/74 Test #19: encoding_koi8-r.txt_diff    Passed0.03
sec
  Start 20: encoding_one-char-latin-15.txt_create
20/74 Test #20: encoding_one-char-latin-15.txt_create ...   Passed0.12
sec
  Start 21: encoding_one-char-latin-15.txt_diff
21/74 Test #21: encoding_one-char-latin-15.txt_diff .   Passed0.03
sec
  Start 22: encoding_latin15-with-utf8-bom.txt_create
22/74 Test #22: encoding_latin15-with-utf8-bom.txt_create ...   Passed0.12
sec
  Start 23: encoding_latin15-with-utf8-bom.txt_diff
23/74 Test #23: encoding_latin15-with-utf8-bom.txt_diff .   Passed0.03
sec
  Start 24: kateindenttest_testPython
24/74 Test #24: kateindenttest_testPython ...   Passed0.68
sec
  Start 25: kateindenttest_testJulia
25/74 Test #25: kateindenttest_testJulia    Passed0.66
sec
  Start 26: kateindenttest_testCstyle
26/74 Test #26: kateindenttest_testCstyle ...   Passed1.45
sec
  Start 27: kateindenttest_testCppstyle
27/74 Test #27: kateindenttest_testCppstyle .   Passed1.39
sec
  Start 28: kateindenttest_testCMake
28/74 Test #28: kateindenttest_testCMake    Passed0.57
sec
  Start 29: kateindenttest_testRuby
29/74 Test #29: kateindenttest_testRuby .   Passed1.63
sec
  Start 30: kateindenttest_testHaskell
30/74 Test #30: kateindenttest_testHaskell ..   Passed0.50
sec
  Start 31: kateindenttest_testLatex
31/74 Test #31: kateindenttest_testLatex    Passed0.46
sec
  Start 32: kateindenttest_testPascal
32/74 Test #32: kateindenttest_testPascal ...   Passed1.32
sec
  Start 33: kateindenttest_testAda
33/74 Test #33: kateindenttest_testAda ..   Passed0.60
sec
  Start 34: kateindenttest_testXml
34/74 Test #34: kateindenttest_testXml ..   Passed0.60
sec
  Start 35: kateindenttest_testNormal
35/74 Test #35: kateindenttest_testNormal ...   Passed0.44
sec
  Start 36: 

[systemsettings] [Bug 443186] Plasma-Wayland desktop crashes when applying refresh rate setting to external monitor

2021-10-03 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=443186

maringrl...@gmail.com changed:

   What|Removed |Added

   Keywords||wayland

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

[systemsettings] [Bug 443186] Plasma-Wayland desktop crashes when applying refresh rate setting to external monitor

2021-10-03 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=443186

--- Comment #2 from maringrl...@gmail.com ---
(In reply to David Edmundson from comment #1)
> >#10 0x7fe04677054d in 
> >QtWaylandClient::QWaylandDisplay::dispatchQueueWhile(wl_event_queue*, 
> >std::function, int) () from 
> >/lib/x86_64-linux-gnu/libQt5WaylandClient.so.5
> 
> If you can reliably reproduce please run
> 
> WAYLAND_DEBUG=1 systemsettings5 and recreate

Should I copy-paste the output from the terminal or is there a log file that I
can post?

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

[kid3] [Bug 441573] Kid3 should separate state config from settings config

2021-10-03 Thread Till Schäfer
https://bugs.kde.org/show_bug.cgi?id=441573

--- Comment #3 from Till Schäfer  ---
awesome, thank you a lot!

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

[plasmashell] [Bug 436247] Breeze SDDM theme has a very strong shadow in the clock and date texts and they look weird with lighter backgrounds

2021-10-03 Thread Neal Gompa
https://bugs.kde.org/show_bug.cgi?id=436247

--- Comment #26 from Neal Gompa  ---
(In reply to 61kylyqt from comment #25)
> What if a there was a way to override
> /usr/share/sddm/themes/breeze/theme.conf through a script or something? Then
> the a package could be created to execute this script when installing.

I don't want install-time scripts to run if we don't have to. Scripts slow down
things and make it more difficult to create different kinds of custom
images/derivatives.

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

[plasmashell] [Bug 443270] Discover icon on task manager reacting when system settings is launched

2021-10-03 Thread francaco
https://bugs.kde.org/show_bug.cgi?id=443270

--- Comment #1 from francaco  ---
Created attachment 142129
  --> https://bugs.kde.org/attachment.cgi?id=142129=edit
Video showing described Discover icon bug

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

[plasmashell] [Bug 443270] New: Discover icon on task manager reacting when system settings is launched

2021-10-03 Thread francaco
https://bugs.kde.org/show_bug.cgi?id=443270

Bug ID: 443270
   Summary: Discover icon on task manager reacting when system
settings is launched
   Product: plasmashell
   Version: 5.22.90
  Platform: Archlinux Packages
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: Task Manager and Icons-Only Task Manager
  Assignee: h...@kde.org
  Reporter: franco...@protonmail.com
CC: plasma-b...@kde.org
  Target Milestone: 1.0

SUMMARY

Discover icon on the icons only task manager reacts (gets highlighted/shadowed)
without being clicked or even interacted with. It happens (only) when system
settings is launched from the same task manager, both in Wayland and X11.

STEPS TO REPRODUCE
1. From a desktop without any window open
2. Click on the system settings icon on the task manager to start it.
3. Wait

OBSERVED RESULT

1. Just before the system settings window pops up, Discover icon will quicly
get highlighted for a tiny fraction of time.

EXPECTED RESULT

1. Discover icon doesn't react or get highlighted when system settings is
opened.

SOFTWARE/OS VERSIONS
Windows: -
macOS: -
Linux/KDE Plasma: Linux kernel 5.14.8-arch1-1
KDE Plasma Version: Plasma 5.22.90
KDE Frameworks Version: 5.86.0
Qt Version: 5.15.2

ADDITIONAL INFORMATION

See attachment - First half: Wayland, starting system settings vs Konsole.
Second half: X11, starting system settings.

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

[gwenview] [Bug 441121] gwenview crashes when opening .jpg in X11 Session (wayland not possible on graphics card)

2021-10-03 Thread Tony
https://bugs.kde.org/show_bug.cgi?id=441121

Tony  changed:

   What|Removed |Added

 CC||syiad.al-d...@web.de

--- Comment #7 from Tony  ---
*** Bug 443069 has been marked as a duplicate of this bug. ***

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

[gwenview] [Bug 443069] Gwenview crashes when opening jpeg (on Wayland)

2021-10-03 Thread Tony
https://bugs.kde.org/show_bug.cgi?id=443069

Tony  changed:

   What|Removed |Added

 CC||jodr...@live.com
 Resolution|--- |DUPLICATE
 Status|REPORTED|RESOLVED

--- Comment #1 from Tony  ---


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

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

[okular] [Bug 443255] Okular crashes when opening PDF file

2021-10-03 Thread Tony
https://bugs.kde.org/show_bug.cgi?id=443255

--- Comment #2 from Tony  ---
Created attachment 142128
  --> https://bugs.kde.org/attachment.cgi?id=142128=edit
New crash information added by DrKonqi

okular (21.11.70) using Qt 5.15.2

- What I was doing when the application crashed:
Opened the attached PDF file in order to reproduce the crash.

-- Backtrace (Reduced):
#6  0x7f22753dc3f1 in qToStringViewIgnoringNull (s=...) at
/usr/include/qt5/QtCore/qstringview.h:381
#7  QtPrivate::qStringLikeToArg (s=...) at
/usr/include/qt5/QtCore/qstring.h:2118
#8  QStringView::arg (this=, this=) at /usr/include/qt5/QtCore/qstring.h:2129
#9  QString::arg (this=0x7ffd62fcb148, this=0x7ffd62fcb148, a6=..., a5=...,
a4=..., a3=..., a2=..., a1=...) at /usr/include/qt5/QtCore/qstring.h:1136
#10 printd (context=, arguments=...) at
/usr/src/debug/okular-21.11.70git.20211001T193123~a40849988-ku.34.1.x86_64/core/script/kjs_util.cpp:94

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

[okular] [Bug 443255] Okular crashes when opening PDF file

2021-10-03 Thread Tony
https://bugs.kde.org/show_bug.cgi?id=443255

Tony  changed:

   What|Removed |Added

 CC||jodr...@live.com

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

[plasmashell] [Bug 443215] GDK_SCALE and GDK_DPI_SCALE are hard coded and overwrite user config

2021-10-03 Thread Liu Zhe
https://bugs.kde.org/show_bug.cgi?id=443215

--- Comment #2 from Liu Zhe  ---
(In reply to David Edmundson from comment #1)
> They are hardcoded to fix a bug.
> 
> On wayland scaling is set via the wayland protocol and there is no need for
> this.

Frankly speaking wayland scaling is unusably blur. And for small factor like
125% it's way better to scale font only, which is not supported by wayland
protocol to my knowledge.

I understand the bug it fixes but I believe a properly scaled browser is also a
must-have feature.

Can we make this behavior configurable? Via system settings or... dirty
workaround like PLASMA_GDK_DPI_SCALE.

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

[kate] [Bug 440585] Tabs bar tends to scroll left and hides all tabs to the right of current tab

2021-10-03 Thread Christoph Cullmann
https://bugs.kde.org/show_bug.cgi?id=440585

Christoph Cullmann  changed:

   What|Removed |Added

   Severity|normal  |wishlist
 CC||cullm...@kde.org

--- Comment #4 from Christoph Cullmann  ---
If somebody wants to work on improving this, patches are welcome.

I think the current implementation works as designed and is consistent with
other KDE applications that have tabs.

If one e.g. limits the number of tabs to have LRU behavior, this problem
vanishes, thought not in a way you will like I assume.

Therefore I keep this open as wish list.
But if nobody steps up to implement it, this will someone be closed.

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

[khelpcenter] [Bug 443259] Help Center tells me to file a bug report

2021-10-03 Thread Luigi Toscano
https://bugs.kde.org/show_bug.cgi?id=443259

--- Comment #4 from Luigi Toscano  ---
The change may be related to a recent change in kio and I guess going back
would be tricky.
About the index.cache.bz2 file, that's generated during the compilation, but if
it's not found kio_help should process the docbook file directly.

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

[kate] [Bug 442468] Running a formatter as external tool prevents usage of Ctrl+Z

2021-10-03 Thread Christoph Cullmann
https://bugs.kde.org/show_bug.cgi?id=442468

Christoph Cullmann  changed:

   What|Removed |Added

   Severity|normal  |wishlist
 CC||cullm...@kde.org

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

[plasmashell] [Bug 438839] Wayland - turning monitor off and back on causes plasmashell to make invalid xdgshell request

2021-10-03 Thread Andreas Sturmlechner
https://bugs.kde.org/show_bug.cgi?id=438839

Andreas Sturmlechner  changed:

   What|Removed |Added

 CC||ast...@gentoo.org

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

[khelpcenter] [Bug 443259] Help Center tells me to file a bug report

2021-10-03 Thread Jack
https://bugs.kde.org/show_bug.cgi?id=443259

--- Comment #3 from Jack  ---
I seem to recall just running khelpcenter against index.html created by
meinproc5, but it's been quite a while, so it's likely that either something
changed, or my memory is off.  However, I just tried it now, and khelpcenter
opened (with no help file) and then firefox launched index.html
David - do you actually have firefox (or firefox-bin) installed?
Separately, I also have a vague memory (confirmed by the man page) that there
are some xsl stylesheets which can be mentioned as part of the meinproc5
invokation (with --stylesheet) to make the output display better with a
standard browser rather than khelpcenter or konqueror (the man page just says
"KDE browsers.")
Final note - when invoking meinproc5, I do not get a index.cache.bz2 file
generated.  Does it somehow know when it is being invoked as part of a full
build?

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

[krita] [Bug 442972] Copy/Cut became very slow and bugged

2021-10-03 Thread Lynx3d
https://bugs.kde.org/show_bug.cgi?id=442972

--- Comment #3 from Lynx3d  ---
Hm I can't reproduce it with Krita 5.0 appimages here, copying the 10 color
layers of a 4k image I'm working on and opening the File->New dialog only takes
maybe half a second to evaluate the clipboard content, while master branch
takes 4+ seconds for each of those same actions.
If memory serves me correctly, compiling 5.0 branch myself didn't show the
issue either.

But something seems to have made creating a new document object (not only an
actual document to edit with canvas etc. but also temporary/internal ones)
extremely slow, even a blank one. I just hadn't time yet to investigate what's
going on...it's quite possible it can happen in 5.0 branch too in certain
conditions.

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

[kate] [Bug 442526] Kate crashed when pressing the "custom" button where you choose color for highlighted brackets.

2021-10-03 Thread Christoph Cullmann
https://bugs.kde.org/show_bug.cgi?id=442526

Christoph Cullmann  changed:

   What|Removed |Added

 Status|REPORTED|NEEDSINFO
 Resolution|--- |WAITINGFORINFO
 CC||cullm...@kde.org

--- Comment #1 from Christoph Cullmann  ---
Hi, sorry, I can not really reproduce this.

Would it be possible for you to use some more up-to-date version of frameworks
and Kate?

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

[kate] [Bug 443267] Renaming current session causes crash

2021-10-03 Thread Christoph Cullmann
https://bugs.kde.org/show_bug.cgi?id=443267

Christoph Cullmann  changed:

   What|Removed |Added

   Version Fixed In||21.12.0
 CC||cullm...@kde.org

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

[kate] [Bug 443267] Renaming current session causes crash

2021-10-03 Thread Christoph Cullmann
https://bugs.kde.org/show_bug.cgi?id=443267

Christoph Cullmann  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
 Resolution|--- |FIXED
  Latest Commit||https://invent.kde.org/util
   ||ities/kate/commit/7f4c60e23
   ||062ab4ffe152385f18ceb77fdf8
   ||1ea5

--- Comment #1 from Christoph Cullmann  ---
Git commit 7f4c60e23062ab4ffe152385f18ceb77fdf81ea5 by Christoph Cullmann.
Committed on 03/10/2021 at 20:26.
Pushed by cullmann into branch 'master'.

avoid crash on session rename

delay update of list out of signal/slot chain

M  +6-4kate/session/katesessionmanagedialog.cpp

https://invent.kde.org/utilities/kate/commit/7f4c60e23062ab4ffe152385f18ceb77fdf81ea5

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

[plasmashell] [Bug 429622] Re-enable “show password” button on login screen

2021-10-03 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=429622

61kyl...@anonaddy.me changed:

   What|Removed |Added

 CC||bharadwaj.raju777@protonmai
   ||l.com

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

[systemsettings] [Bug 438570] Crash in KScreen::Mode::size() when setting refresh rate

2021-10-03 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=438570

David Edmundson  changed:

   What|Removed |Added

 CC||projects...@smart.ms

--- Comment #1 from David Edmundson  ---
*** Bug 433886 has been marked as a duplicate of this bug. ***

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

[systemsettings] [Bug 433886] Crash when activate third screen

2021-10-03 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=433886

David Edmundson  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 Status|REPORTED|RESOLVED

--- Comment #1 from David Edmundson  ---


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

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

[systemsettings] [Bug 435251] System Settings crashed when I enabled the option to see what has changed.

2021-10-03 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=435251

David Edmundson  changed:

   What|Removed |Added

 CC||k...@davidedmundson.co.uk

--- Comment #1 from David Edmundson  ---
>Can you #7  0x7f95a58c0ef3 in 
>QtWaylandClient::QWaylandDisplay::checkError() const [clone .cold] () from 
>/lib64/libQt5WaylandClient.so.5

Can you reproduce?

If so, can you run WAYLAND_DEBUG=1 systemsettings5

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

[plasmashell] [Bug 429622] Re-enable “show password” button on login screen

2021-10-03 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=429622

--- Comment #6 from 61kyl...@anonaddy.me ---
There are some comments in bug https://bugs.kde.org/show_bug.cgi?id=442869 that
might be useful for this bug report:

https://bugs.kde.org/show_bug.cgi?id=442869#c3
https://bugs.kde.org/show_bug.cgi?id=442869#c4

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

[systemsettings] [Bug 443186] Plasma-Wayland desktop crashes when applying refresh rate setting to external monitor

2021-10-03 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=443186

David Edmundson  changed:

   What|Removed |Added

 CC||k...@davidedmundson.co.uk
 Resolution|--- |WAITINGFORINFO
 Status|REPORTED|NEEDSINFO

--- Comment #1 from David Edmundson  ---
>#10 0x7fe04677054d in 
>QtWaylandClient::QWaylandDisplay::dispatchQueueWhile(wl_event_queue*, 
>std::function, int) () from 
>/lib/x86_64-linux-gnu/libQt5WaylandClient.so.5

If you can reliably reproduce please run

WAYLAND_DEBUG=1 systemsettings5 and recreate

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

[plasmashell] [Bug 443241] menu cuts off content by 1 pixel

2021-10-03 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=443241

David Edmundson  changed:

   What|Removed |Added

 Status|REPORTED|CONFIRMED
 Ever confirmed|0   |1

--- Comment #1 from David Edmundson  ---
Footer.qmlanchors.bottomMargin: -root.bottomPadding


that's very weird. 

I don't care much about visuals, but doing that without a code comment is
definitely worthy bug report.

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

[plasmashell] [Bug 436247] Breeze SDDM theme has a very strong shadow in the clock and date texts and they look weird with lighter backgrounds

2021-10-03 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=436247

--- Comment #25 from 61kyl...@anonaddy.me ---
What if a there was a way to override /usr/share/sddm/themes/breeze/theme.conf
through a script or something? Then the a package could be created to execute
this script when installing.

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

[kate] [Bug 436754] Encoding ASCII visibility

2021-10-03 Thread Christoph Cullmann
https://bugs.kde.org/show_bug.cgi?id=436754

Christoph Cullmann  changed:

   What|Removed |Added

 CC||cullm...@kde.org
   Severity|normal  |wishlist

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

[klipper] [Bug 307833] klipper doesn't display popup menu on unity

2021-10-03 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=307833
Bug 307833 depends on bug 260830, which changed state.

Bug 260830 Summary: dbusmenu is disabled for klipper
https://bugs.kde.org/show_bug.cgi?id=260830

   What|Removed |Added

 Status|CONFIRMED   |RESOLVED
 Resolution|--- |WORKSFORME

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

[plasmashell] [Bug 260830] dbusmenu is disabled for klipper

2021-10-03 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=260830

David Edmundson  changed:

   What|Removed |Added

 Status|CONFIRMED   |RESOLVED
 Resolution|--- |WORKSFORME
 CC||k...@davidedmundson.co.uk

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

[plasmashell] [Bug 438839] Wayland - turning monitor off and back on causes plasmashell to make invalid xdgshell request

2021-10-03 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=438839

David Edmundson  changed:

   What|Removed |Added

 CC||alexey@gmail.com

--- Comment #10 from David Edmundson  ---
*** Bug 439321 has been marked as a duplicate of this bug. ***

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

[plasmashell] [Bug 439321] Wayland connection error thrown

2021-10-03 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=439321

David Edmundson  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 Status|REPORTED|RESOLVED

--- Comment #10 from David Edmundson  ---


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

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

[plasmashell] [Bug 439321] Wayland connection error thrown

2021-10-03 Thread Rex Dieter
https://bugs.kde.org/show_bug.cgi?id=439321

Rex Dieter  changed:

   What|Removed |Added

 CC||rdie...@gmail.com

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

[plasmashell] [Bug 443221] 'sleep' sometimes fails to put laptop to sleep

2021-10-03 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=443221

David Edmundson  changed:

   What|Removed |Added

 Status|REPORTED|NEEDSINFO
 Resolution|--- |WAITINGFORINFO

--- Comment #1 from David Edmundson  ---
Please test with  systemctl suspend

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

[plasmashell] [Bug 439321] Wayland connection error thrown

2021-10-03 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=439321

David Edmundson  changed:

   What|Removed |Added

 CC||bait...@mailfence.com

--- Comment #5 from David Edmundson  ---
*** Bug 438517 has been marked as a duplicate of this bug. ***

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

[plasmashell] [Bug 438517] Plasma crash when change the screen layout (wayland)

2021-10-03 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=438517

David Edmundson  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 Status|REOPENED|RESOLVED

--- Comment #2 from David Edmundson  ---


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

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

[plasmashell] [Bug 439321] Wayland connection error thrown

2021-10-03 Thread Patrick Silva
https://bugs.kde.org/show_bug.cgi?id=439321

Patrick Silva  changed:

   What|Removed |Added

 CC||bugsefor...@gmx.com

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

[plasmashell] [Bug 440559] Certain parts of KDE Plasma stop working after long-term use

2021-10-03 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=440559

David Edmundson  changed:

   What|Removed |Added

 Resolution|--- |WAITINGFORINFO
 Status|REOPENED|NEEDSINFO

--- Comment #20 from David Edmundson  ---
Plasmashell had a sensible amount of fd's open.

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

[kate] [Bug 439790] Exported kate theme reports (incorrect) error message wmen the theme is imported.

2021-10-03 Thread Christoph Cullmann
https://bugs.kde.org/show_bug.cgi?id=439790

Christoph Cullmann  changed:

   What|Removed |Added

 CC||cullm...@kde.org

--- Comment #3 from Christoph Cullmann  ---
I assume you are right, the .theme ending was not the best idea.

I would even rather settle just for .json for the files.
Beside a bit compat code, I see no large issue with renaming them.

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

[plasmashell] [Bug 439321] Wayland connection error thrown

2021-10-03 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=439321

David Edmundson  changed:

   What|Removed |Added

 CC||ltstarwars...@gmail.com

--- Comment #9 from David Edmundson  ---
*** Bug 443174 has been marked as a duplicate of this bug. ***

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

[plasmashell] [Bug 443174] Plasmashell Crashes Upon Display Port Monitor Turning Off In Wayland

2021-10-03 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=443174

David Edmundson  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
 CC||k...@davidedmundson.co.uk
 Resolution|--- |DUPLICATE

--- Comment #1 from David Edmundson  ---


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

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

[plasmashell] [Bug 439321] Wayland connection error thrown

2021-10-03 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=439321

--- Comment #8 from David Edmundson  ---
We don't have a good log in any of the dupes. I strongly strongly suspect it's
us trying to render panels / desktopviews on the placeholder screen.

Lets assume it's that until we know anything better.

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

[plasmashell] [Bug 439321] Wayland connection error thrown

2021-10-03 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=439321

David Edmundson  changed:

   What|Removed |Added

 CC||aals...@gmail.com

--- Comment #7 from David Edmundson  ---
*** Bug 413480 has been marked as a duplicate of this bug. ***

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

[plasmashell] [Bug 413480] KDE crashes on login in QtWaylandClient::QWaylandDisplay::dispatchQueueWhile() when using wayland

2021-10-03 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=413480

David Edmundson  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
 CC||k...@davidedmundson.co.uk
 Resolution|--- |DUPLICATE

--- Comment #6 from David Edmundson  ---


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

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

[plasmashell] [Bug 424879] plasmashell aborted shortly after logging in with the error The Wayland connection experienced a fatal error: Invalid argument

2021-10-03 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=424879

David Edmundson  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 Status|REPORTED|RESOLVED

--- Comment #12 from David Edmundson  ---


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

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

[plasmashell] [Bug 439321] Wayland connection error thrown

2021-10-03 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=439321

David Edmundson  changed:

   What|Removed |Added

 CC||matthew.fagn...@utoronto.ca

--- Comment #6 from David Edmundson  ---
*** Bug 424879 has been marked as a duplicate of this bug. ***

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

[khelpcenter] [Bug 443259] Help Center tells me to file a bug report

2021-10-03 Thread Luigi Toscano
https://bugs.kde.org/show_bug.cgi?id=443259

Luigi Toscano  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
 CC||luigi.tosc...@tiscali.it
 Resolution|--- |INTENTIONAL

--- Comment #2 from Luigi Toscano  ---
As far as I know a generated html file can't be used directly, as khelpcenter
only opens the docbook file (or the index.cache.bz2 files) from a known
location.

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

[plasmashell] [Bug 439321] Wayland connection error thrown

2021-10-03 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=439321

David Edmundson  changed:

   What|Removed |Added

 CC||josealvarado1...@gmail.com

--- Comment #4 from David Edmundson  ---
*** Bug 438373 has been marked as a duplicate of this bug. ***

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

[plasmashell] [Bug 438373] Plama crashes when moving the default panel from one monitor to the second monitor

2021-10-03 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=438373

David Edmundson  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 Status|REPORTED|RESOLVED
 CC||k...@davidedmundson.co.uk

--- Comment #2 from David Edmundson  ---


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

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

[frameworks-ktexteditor] [Bug 440764] 5.84.0: test suite is failing

2021-10-03 Thread Christoph Cullmann
https://bugs.kde.org/show_bug.cgi?id=440764

Christoph Cullmann  changed:

   What|Removed |Added

 Resolution|--- |WORKSFORME
 Status|REPORTED|RESOLVED
 CC||cullm...@kde.org

--- Comment #1 from Christoph Cullmann  ---
I am sorry about the failures with that version.

The current master seems to work fine in the KDE CI.

(but I am aware that not all tests are 100% stable, thought no idea why)

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

[plasmashell] [Bug 439321] Wayland connection error thrown

2021-10-03 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=439321

David Edmundson  changed:

   What|Removed |Added

 CC||aisi...@gmail.com

--- Comment #3 from David Edmundson  ---
*** Bug 433767 has been marked as a duplicate of this bug. ***

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

  1   2   3   >