[Craft] [Bug 448443] Support blueprint building on M1 darwin arm64

2022-01-13 Thread Jasem Mutlaq
https://bugs.kde.org/show_bug.cgi?id=448443

--- Comment #4 from Jasem Mutlaq  ---
We also tried to build KStars on M1 Macs and failed due to this exact issue as
well.

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

[Craft] [Bug 448443] Support blueprint building on M1 darwin arm64

2022-01-13 Thread Jasem Mutlaq
https://bugs.kde.org/show_bug.cgi?id=448443

Jasem Mutlaq  changed:

   What|Removed |Added

 CC||mutla...@ikarustech.com

--- Comment #3 from Jasem Mutlaq  ---
We have tens of CMakeLists.txt so this solution isn't viable. is there a way to
set this in CraftSettings.ini ?

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

[krita] [Bug 447367] When right-clicking the brush parameters, there is a high probability of being directly locked

2022-01-13 Thread thetwo
https://bugs.kde.org/show_bug.cgi?id=447367

thetwo  changed:

   What|Removed |Added

Summary|The pop-up interface is |When right-clicking the
   |abnormal|brush parameters, there is
   ||a high probability of being
   ||directly locked

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

[Craft] [Bug 448443] Support blueprint building on M1 darwin arm64

2022-01-13 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=448443

--- Comment #2 from turx2...@gmail.com ---
I am happy to help solve this problem if you can give me some hints,
considering we may not have many developers with an M1 Mac available.

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

[krita] [Bug 447367] The pop-up interface is abnormal

2022-01-13 Thread thetwo
https://bugs.kde.org/show_bug.cgi?id=447367

thetwo  changed:

   What|Removed |Added

 Resolution|FIXED   |---
Version|5.0.0-beta5 |5.0.2
 Status|RESOLVED|REOPENED

--- Comment #5 from thetwo  ---
(In reply to Halla Rempt from comment #4)
> Git commit c64b1022e66afe1a8f20bc54307016a803035705 by Halla Rempt.
> Committed on 05/01/2022 at 13:56.
> Pushed by rempt into branch 'krita/5.0'.
> 
> Add a section on top of the lock/unlock menu
> 
> This prevents accidental clicks.
> (cherry picked from commit 76243e7a2c3f734c64a600e804a521b5cbe27484)
> 
> M  +9-2libs/ui/widgets/kis_categorized_list_view.cpp
> 
> https://invent.kde.org/graphics/krita/commit/
> c64b1022e66afe1a8f20bc54307016a803035705

Was it merged in 5.0.2? I still have exceptions. It's like double-clicking when
the mouse is clicked (I set shortcut keys for the keyboard, not the mouse's
fault) or is it a windows11 bug?

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

[Craft] [Bug 448443] Support blueprint building on M1 darwin arm64

2022-01-13 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=448443

--- Comment #1 from turx2...@gmail.com ---
One way I found to solve it is to add the following to each CMakeLists.txt

if(APPLE)
  option(OSX_FRAMEWORK "Build a Mac OS X Framework" ON)
  set(CMAKE_OSX_ARCHITECTURES “x86_64;arm64" CACHE STRING "Build architectures
for Mac OS X" FORCE)
else()
  set(OSX_FRAMEWORK OFF)
endif()

or pass -DCMAKE_OSX_ARCHITECTURES=x86_64;arm64 to cmake

The current build system builds for x86_64 anytime, and the above command is to
enable the universal binary build. If we only want to build for one arch at a
time, we can change it to “arm64” in case of a build for M1.

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

[Craft] [Bug 448443] New: Support blueprint building on M1 darwin arm64

2022-01-13 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=448443

Bug ID: 448443
   Summary: Support blueprint building on M1 darwin arm64
   Product: Craft
   Version: stable
  Platform: Compiled Sources
OS: macOS
Status: REPORTED
  Severity: major
  Priority: NOR
 Component: Blueprints
  Assignee: vonr...@kde.org
  Reporter: turx2...@gmail.com
CC: kde-wind...@kde.org
  Target Milestone: ---

I am building KDE Connect for M1 Mac (darwin arm64), but I found KDE Craft
deliberately builds packages for x86_64 which is incompatible with arm64, and a
number of the prebuilt binaries delivered are x86_64 only, while arm64 versions
are available by Homebrew or manually compilation. This causes a lot of
compilation errors in linking like “ld: warning: ignoring file
/Users/turx/CraftRoot/lib/libKF5IconThemes.5.89.0.dylib, building for
macOS-arm64 but attempting to link with file built for macOS-x86_64” or the
inverse (when it incorrectly trying to build for x86_64 with arm64 libs),
causing "clang: error: linker command failed with exit code 1".

I am using macOS 12.1, and a part of my "uname -a" info is "Darwin 21.2.0
Darwin Kernel Version 21.2.0: Sun Nov 28 20:28:41 PST 2021;
root:xnu-8019.61.5~1/RELEASE_ARM64_T6000 arm64".

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

[neon] [Bug 448417] neon-settings needs updating to 50-kcoreaddons to reflect frameworks update

2022-01-13 Thread popov895
https://bugs.kde.org/show_bug.cgi?id=448417

popov895  changed:

   What|Removed |Added

 CC||popov...@ukr.net

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

[krita] [Bug 448442] Brush editor does not work properly when some brush parameters are locked

2022-01-13 Thread thetwo
https://bugs.kde.org/show_bug.cgi?id=448442

--- Comment #1 from thetwo  ---
Added: In "mask brush", locking one parameter will cause all other parameters
to be locked

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

[neon] [Bug 448417] neon-settings needs updating to 50-kcoreaddons to reflect frameworks update

2022-01-13 Thread Jasem Mutlaq
https://bugs.kde.org/show_bug.cgi?id=448417

Jasem Mutlaq  changed:

   What|Removed |Added

 CC||mutla...@ikarustech.com

--- Comment #2 from Jasem Mutlaq  ---
I can confirm this issue too, cannot build any KDE apps now.

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

[partitionmanager] [Bug 448401] error when trying to resize partition

2022-01-13 Thread James Morgan
https://bugs.kde.org/show_bug.cgi?id=448401

--- Comment #2 from James Morgan  ---
Hi Andrius

Yes. That's a typo in my report. It was dev in the cmd error.

Cheers
James

On 13 Jan 2022, 23:11, at 23:11, "Andrius Štikonas" 
wrote:
>https://bugs.kde.org/show_bug.cgi?id=448401
>
>--- Comment #1 from Andrius Štikonas  ---
>> e2fsck: No such file or directory while trying to open /deb/sdb1
>
>Did you make a typo here? /deb should be /dev
>
>--
>You are receiving this mail because:
>You reported the bug.

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

[frameworks-knewstuff] [Bug 447269] Closing the Get New Stuff dialog doesn't really close it, it's still in the background. All errors from before come back when it's reopened. The only way to close i

2022-01-13 Thread strangequark
https://bugs.kde.org/show_bug.cgi?id=447269

--- Comment #3 from strangequark  ---
(In reply to Alexander Lohnau from comment #2)
> I though we did not want to re-create the dialog and thus re-create the KNS
> engine when one closes and opens the dialog.
> 
> >because any errors that were previously displayed are still there.
> 
> Could you post a screenshot of the errors?
> 
> >It should actually close when the close button is pressed
> 
> There is a difference between close and quit ;)

I do not have a screenshot of the errors at the moment, but this bug is also
irritating when something is being installed. Install something from the
window, and while it is being installed close both the Get New Stuff window and
the System Settings window itself. Now, System Settings refuses to open (when
launched) until whatever you were installing has finished.

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

[krita] [Bug 448442] New: Brush editor does not work properly when some brush parameters are locked

2022-01-13 Thread thetwo
https://bugs.kde.org/show_bug.cgi?id=448442

Bug ID: 448442
   Summary: Brush editor does not work properly when some brush
parameters are locked
   Product: krita
   Version: 5.0.2
  Platform: Microsoft Windows
OS: Microsoft Windows
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: Brush Engine/Bristle
  Assignee: krita-bugs-n...@kde.org
  Reporter: thetwo...@foxmail.com
  Target Milestone: ---

Created attachment 145447
  --> https://bugs.kde.org/attachment.cgi?id=145447=edit
bug

When I lock one of "blending mode", "opacity" or "flow" and switch to another
brush, I find that the other parameters are also locked.
And the brush preview keeps flashing, and some parameters (such as the lock in
rotation) are also flashing.

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

[Powerdevil] [Bug 447461] Energy settings should provide an option to hibernate after suspend when button pressed or lid closed

2022-01-13 Thread Peter Ries
https://bugs.kde.org/show_bug.cgi?id=447461

--- Comment #4 from Peter Ries  ---
I had it that way. AC unchecked. On Battery checked.

But when I closed the lid while plugged to AC in the evening the laptop woke up
from hibernation (long wae up time with decryption password from grub etc...)

So I assumed that the settings are being ignored when id  is closed or button
is pressed.

What I didn't test at all is if this happens if I let my laptop suspend after x
minutes and hibernate after y minutes of inactivity by itself.

(This would at least tell me if my laptop can stay suspended only or if it
ALWAYS hibernates after suspend because of settings in sleep.conf)

I'll analysis when I'm back home. (Currently on holiday with my travel notebook
;) )

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

[Spectacle] [Bug 448441] New: Spectacle appears on display :20 when invoked from display :0

2022-01-13 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=448441

Bug ID: 448441
   Summary: Spectacle appears on display :20 when invoked from
display :0
   Product: Spectacle
   Version: 20.04.0
  Platform: Mint (Ubuntu based)
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: General
  Assignee: m...@baloneygeek.com
  Reporter: djvict...@gmail.com
CC: k...@david-redondo.de
  Target Milestone: ---

SUMMARY
When chrome-remote-desktop is running with an open session, it creates a
display :20. In order to work properly, chrome-remote-desktop generally
requires its own desktop environment running on its display. In this case, I am
using cinnamon desktop for chrome-remote-desktop for :20 and KDE on the main
display :0. Both sessions must be logged in as the same user.

Spectacle, when invoked using a shortcut or when loaded from the KDE menu from
display :0, loads only on display :20. That is, the application window fails to
load in the display and desktop environment from which it was invoked. When
invoked from a terminal launched from display :0, the spectacle window appears
correctly in display :0.

STEPS TO REPRODUCE
1. Install chrome-remote-desktop
2. Log into chrome-remote-desktop using cinnamon with software rendering
3. In the physical KDE login session, load spectacle from the menu or with the
prtscn button.

OBSERVED RESULT
Spectacle doesn't appear in KDE on display :0 when launched from KDE, but
rather appears on display :20.

EXPECTED RESULT
Spectacle should load on the display and desktop environment from which it was
invoked.

SOFTWARE/OS VERSIONS
Operating System: Linux Mint 20.2
KDE Plasma Version: 5.18.7
KDE Frameworks Version: 5.68.0
Qt Version: 5.12.8
Kernel Version: 5.11.0-44-generic
OS Type: 64-bit
Processors: 12 × AMD Ryzen 5 5600X 6-Core Processor
Memory: 31.3 GiB of RAM

$ cinnamon --version
Cinnamon 5.0.7

$ uname -a
Linux  5.11.0-44-generic #48~20.04.2-Ubuntu SMP Tue Dec 14 15:36:44 UTC
2021 x86_64 x86_64 x86_64 GNU/Linux

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

[kate] [Bug 447259] Opening a new window opens the same document that's already open

2022-01-13 Thread strangequark
https://bugs.kde.org/show_bug.cgi?id=447259

--- Comment #2 from strangequark  ---
(In reply to Christoph Cullmann from comment #1)
> Hi, I don't think that concept makes sense for Kate.
> I open a new window to e.g. view different files of my projects on multiple
> screens.
> Opening a new window should not imply I get a new untitled file.
> If that doesn't fit your expectations, sorry, but that works as designed.

That makes sense.
Could there be a toggle for Kate to behave like (say) a web browser, in that I
don't get all the tabs of my window when I open a new one, and closing a
document in one tab doesn't close it everywhere else? That would help when the
user has just plain text-editing in mind and not programming.

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

[lattedock] [Bug 448418] [wayland] - plasma 5.24 - primary display is not respected as it should

2022-01-13 Thread Michail Vourlakos
https://bugs.kde.org/show_bug.cgi?id=448418

--- Comment #1 from Michail Vourlakos  ---
plasma 5.24 has built its own internal wayland protocol in order to identify
primary screen. Of course that means that adjusting Latte might be a lot of
work...

reference:
https://github.com/KDE/plasma-workspace/commit/0f2be58f1408bff6d3cf3153d555f86b29e27ba2

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

[lattedock] [Bug 448433] Latte does not unhide in 0.10.7

2022-01-13 Thread Michail Vourlakos
https://bugs.kde.org/show_bug.cgi?id=448433

Michail Vourlakos  changed:

   What|Removed |Added

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

--- Comment #2 from Michail Vourlakos  ---
waiting layout

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

[xdg-desktop-portal-kde] [Bug 448423] Screen sharing fails to work on apps that use portal + pipewire to capture the screen

2022-01-13 Thread Jan Grulich
https://bugs.kde.org/show_bug.cgi?id=448423

Jan Grulich  changed:

   What|Removed |Added

 CC||aleix...@kde.org,
   ||jgrul...@redhat.com

--- Comment #1 from Jan Grulich  ---
Hi Samuel,

can you try to start xdg-desktop-portal-kde with
"QT_LOGGING_RULES='xdp*.debug=true'" and attach here the output while you try
to share a screen?

CC Aleix: Could this be related to your changes to use QML dialogs from
plasma-workspace?

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

[krita] [Bug 448359] The error of krita's own tag

2022-01-13 Thread thetwo
https://bugs.kde.org/show_bug.cgi?id=448359

--- Comment #4 from thetwo  ---
I use translation software, not very understand what you mean ..

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

[digikam] [Bug 448432] Importing images to be folderized by date causes them to be folderized by import date, not the date the picture was taken

2022-01-13 Thread Maik Qualmann
https://bugs.kde.org/show_bug.cgi?id=448432

--- Comment #2 from Maik Qualmann  ---
See also: Bug 446632 and Bug 331167

Maik

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

[frameworks-ktexteditor] [Bug 435855] Selecting the whole text scrolls down document to the end

2022-01-13 Thread Waqar Ahmed
https://bugs.kde.org/show_bug.cgi?id=435855

Waqar Ahmed  changed:

   What|Removed |Added

 CC||waqar@gmail.com
 Resolution|--- |INTENTIONAL
 Status|ASSIGNED|RESOLVED

--- Comment #5 from Waqar Ahmed  ---
It was decided that the current behaviour is intentional. See the linked MR for
details.

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

[digikam] [Bug 448432] Importing images to be folderized by date causes them to be folderized by import date, not the date the picture was taken

2022-01-13 Thread Maik Qualmann
https://bugs.kde.org/show_bug.cgi?id=448432

Maik Qualmann  changed:

   What|Removed |Added

 Resolution|--- |WORKSFORME
 Status|REPORTED|RESOLVED
   Version Fixed In||7.5.0
 CC||metzping...@gmail.com

--- Comment #1 from Maik Qualmann  ---
In the digiKam settings under Camera-> Behavior activate the reading of
metadata (makes the connection slower). Then the correct folders will be
created.

Maik

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

[frameworks-ktexteditor] [Bug 443642] Selection clipboard no longer works with Shift + click

2022-01-13 Thread Waqar Ahmed
https://bugs.kde.org/show_bug.cgi?id=443642

--- Comment #3 from Waqar Ahmed  ---
> Selection with Ctrl + A won't populate the clipboard, but that is being 
> tracked in a separate bug.

This one got fixed yesterday.

Maybe you can try again, and also make sure that Klipper settings are correct.
I am still unable to reproduce. Can you also check whether middle mouse button
copy/pasting for selection works? If that works, then it could be a config
issue.

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

[umbrello] [Bug 81364] Import Rose model files

2022-01-13 Thread Oliver Kellogg
https://bugs.kde.org/show_bug.cgi?id=81364

--- Comment #34 from Oliver Kellogg  ---
Git commit 8c4efe08b41b4c34f429b4336e7c8053b6635f68 by Oliver Kellogg.
Committed on 14/01/2022 at 06:45.
Pushed by okellogg into branch 'master'.

umbrello/import_rose.cpp followup to commit c7fdfef :
- In function loadFromMDL, after loop over stream.readLine() do not
  set C++ as the code generator if progLang is `Reserved' and no
  code generator is set.
  Reason: progLang value Reserved indicates that the Rose "language"
  attribute was found to be "Analysis" which corresponds to the UML
  primitive types.

M  +2-5umbrello/import_rose.cpp

https://invent.kde.org/sdk/umbrello/commit/8c4efe08b41b4c34f429b4336e7c8053b6635f68

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

[kwin] [Bug 447680] Crash in DrmPipeline::applyPendingChangesLegacy()

2022-01-13 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=447680

--- Comment #9 from Bharadwaj Raju  ---
Created attachment 145446
  --> https://bugs.kde.org/attachment.cgi?id=145446=edit
drm_info output

(In reply to Zamundaaa from comment #6)
> So you can still move the mouse, and start applications (through KRunner or
> sth)?

The mouse isn't rendered, and global shortcuts and KRunner don't seem to work.
Just black screen.

> The output of drm_info could also be useful, even if KWin is not painting 
> anything at all anymore (ssh in and execute it as root to get it in that 
> case).

Switched to another TTY and ran drm_info, output attached.

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

[plasmashell] [Bug 448383] Notifications popup opens very small

2022-01-13 Thread Nico
https://bugs.kde.org/show_bug.cgi?id=448383

--- Comment #5 from Nico  ---
Nice, thank you I will try the patch later today. Quick note what just came to
my mind: Would it be possible to add an option to set the size when using
notifications as a panel applet? This would make it possible to configure it
like the notification sidebar in Windows 10.

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

[lattedock] [Bug 448433] Latte does not unhide in 0.10.7

2022-01-13 Thread Michail Vourlakos
https://bugs.kde.org/show_bug.cgi?id=448433

--- Comment #1 from Michail Vourlakos  ---
it unhides just fine in my system, send your layout file to check it out please

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

[lattedock] [Bug 448418] [wayland] - plasma 5.24 - primary display is not respected as it should

2022-01-13 Thread Michail Vourlakos
https://bugs.kde.org/show_bug.cgi?id=448418

Michail Vourlakos  changed:

   What|Removed |Added

Summary|Primary display is not  |[wayland] - plasma 5.24 -
   |respected on wayland|primary display is not
   ||respected as it should

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

[plasmashell] [Bug 448438] "Slideshow" wallpaper plugin missing UI elements in Desktop Config dialog

2022-01-13 Thread Jin Liu
https://bugs.kde.org/show_bug.cgi?id=448438

--- Comment #3 from Jin Liu  ---
Also tested in Wayland session. Doesn't have the "missing buttons" problem. But
the "Wallpaper category not highlighted" problem is there.

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

[kwin] [Bug 445671] Pressing the "overview" hotkey twice doesn't end the effect, if the hotkey is non-default.

2022-01-13 Thread Jin Liu
https://bugs.kde.org/show_bug.cgi?id=445671

Jin Liu  changed:

   What|Removed |Added

 Resolution|FIXED   |---
 Status|RESOLVED|REOPENED
 Ever confirmed|0   |1

--- Comment #6 from Jin Liu  ---
Tested in 5.24 beta, in both X and Wayland session. Still the same problem: The
hotkey settings when boot up works OK. But if you change to another hotkey, it
won't work (pressing twice) until the next reboot.

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

[kwin] [Bug 448284] Mesa commit 83916ae0, "egl/wayland: add initial dma-buf feedback support" interacts badly with kwin_wayland's dma-buf feedback code, causing Mesa to fallback to llvmpipe

2022-01-13 Thread Kyle Devir
https://bugs.kde.org/show_bug.cgi?id=448284

--- Comment #8 from Kyle Devir  ---
@jason

> Since I'm affected by this issue as well, I've added debug prints to 
> default_dmabuf_feedback_format_table for fd and errno after mmap.

Thanks for the testing, as I don't know how to do that.

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

[plasmashell] [Bug 445512] When switching between app categories, one random app from the last category appears in the next category

2022-01-13 Thread Jin Liu
https://bugs.kde.org/show_bug.cgi?id=445512

--- Comment #12 from Jin Liu  ---
Checked in 5.24 beta. Same problem.

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

[plasmashell] [Bug 448438] "Slideshow" wallpaper plugin missing UI elements in Desktop Config dialog

2022-01-13 Thread Jin Liu
https://bugs.kde.org/show_bug.cgi?id=448438

--- Comment #2 from Jin Liu  ---
Same problem in 5.24 beta.

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

[plasmashell] [Bug 448440] New: The "connection activated" notification could be shown only when changing networks instead at every startup by default

2022-01-13 Thread Photon
https://bugs.kde.org/show_bug.cgi?id=448440

Bug ID: 448440
   Summary: The "connection activated" notification could be shown
only when changing networks instead at every startup
by default
   Product: plasmashell
   Version: master
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: wishlist
  Priority: NOR
 Component: general
  Assignee: k...@davidedmundson.co.uk
  Reporter: ncqm3...@anonaddy.me
CC: plasma-b...@kde.org
  Target Milestone: 1.0

Currently, Plasma shows a "connection activated" notification at every startup.
It seems unnecessary.

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

[Elisa] [Bug 447607] Make playListNotification more like Plasma notifications

2022-01-13 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=447607

--- Comment #3 from Nate Graham  ---
WIP branch, just one more bug to figure out and then I'll submit a merge
request.

https://invent.kde.org/multimedia/elisa/-/tree/work/ngraham/port-to-passivenotification

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

[systemsettings] [Bug 448439] New: Consider changing the focus stealing prevention to medium

2022-01-13 Thread Photon
https://bugs.kde.org/show_bug.cgi?id=448439

Bug ID: 448439
   Summary: Consider changing the focus stealing prevention to
medium
   Product: systemsettings
   Version: unspecified
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: wishlist
  Priority: NOR
 Component: kcm_kwinoptions
  Assignee: kwin-bugs-n...@kde.org
  Reporter: ncqm3...@anonaddy.me
CC: plasma-b...@kde.org
  Target Milestone: ---

Currently, the setting is define to "low" and this can disrupt the workflow.
This will also helps in heavy programs, when you need to do something else
while you wait for the program to load.

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

[plasmashell] [Bug 448438] "Slideshow" wallpaper plugin missing UI elements in Desktop Config dialog

2022-01-13 Thread Jin Liu
https://bugs.kde.org/show_bug.cgi?id=448438

--- Comment #1 from Jin Liu  ---
Created attachment 145445
  --> https://bugs.kde.org/attachment.cgi?id=145445=edit
Buttons appear when clicking "Wallpaper".

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

[plasmashell] [Bug 448438] New: "Slideshow" wallpaper plugin missing UI elements in Desktop Config dialog

2022-01-13 Thread Jin Liu
https://bugs.kde.org/show_bug.cgi?id=448438

Bug ID: 448438
   Summary: "Slideshow" wallpaper plugin missing UI elements in
Desktop Config dialog
   Product: plasmashell
   Version: 5.23.5
  Platform: Archlinux Packages
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: Desktop Containment
  Assignee: notm...@gmail.com
  Reporter: ad.liu@gmail.com
CC: plasma-b...@kde.org
  Target Milestone: 1.0

Created attachment 145444
  --> https://bugs.kde.org/attachment.cgi?id=145444=edit
Buttons missing in the "Folders" list.

SUMMARY
In the Desktop Config dialog, with "Desktop" layout and "Slideshow" wallpaper
selected, the "Folders" list is missing buttons when the dialog is first
opened. But the missing buttons appear when clicking the "Wallpaper" category
in the left pane.

STEPS TO REPRODUCE
1. Open the "Configure desktop" dialog from the desktop right-click menu.
2. Select the "Desktop" layout and "Slideshow" wallpaper.
3. Close the dialog.
4. Open the dialog again.

OBSERVED RESULT
"Delete" and "Open folder" buttons missing in the "Folders" list, as in the
first attachment.

EXPECTED RESULT
"Delete" and "Open folder" buttons present, as in the second attachment.

Also note that when mouse-clicked the "Wallpaper" category in the left pane, it
doesn't highlight like other categories, as shown in the second attachment.

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

ADDITIONAL INFORMATION

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

[kdenlive] [Bug 448342] AV tracks are grouped poorly

2022-01-13 Thread chibo
https://bugs.kde.org/show_bug.cgi?id=448342

--- Comment #4 from chibo  ---
(In reply to Julius Künzel from comment #3)
> Thanks for your report!
> 
> First of all please make sure that you selected "Normal Mode" as edit mode
> (on left side above the timeline).
> 
> I am not finally sure I understood your report right. If so what you call
> "tracks" are clips in the timeline? It reminds me a bit of a bug we fixed in
> the latest version so can you please update to 21.12.1 and try again?
> www.kdenlive.org/download2
> 
> If the issue persist it would be nice if it is possible for you to provide a
> short screen record that demonstrates the problem so we can understand it
> better.

Hi Julius Künzel !

i'm using Arch, so everything is bleeding edge now - 22.03.70
aur/kdenlive-git 21.07.70.r14543-1 (+65 0.36) (Installed: 22.03.70.r15505-1)

here is the video
https://disk.yandex.ru/i/M2_Z9rMLsfDLWQ

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

[plasmashell] [Bug 433386] Files with large names are truncated and cannot be read

2022-01-13 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=433386

Nate Graham  changed:

   What|Removed |Added

   Version Fixed In||5.24
 Resolution|--- |FIXED
  Latest Commit||https://invent.kde.org/plas
   ||ma/plasma-desktop/commit/d1
   ||91d5c535ab0f56a8266084f7719
   ||6d84ee326d4
 Status|ASSIGNED|RESOLVED

--- Comment #4 from Nate Graham  ---
Git commit d191d5c535ab0f56a8266084f77196d84ee326d4 by Nate Graham.
Committed on 14/01/2022 at 05:14.
Pushed by ngraham into branch 'master'.

folder view: always show tooltips for items with elided text

The "Tooltips" feature is disabled by default, but it can be handy for
items whose text has been elided, since otherwise there's no way to see
the full text. So let's show the tooltip for such items even when the
feature is disabled.
FIXED-IN: 5.24

M  +3-1containments/desktop/package/contents/ui/FolderItemDelegate.qml

https://invent.kde.org/plasma/plasma-desktop/commit/d191d5c535ab0f56a8266084f77196d84ee326d4

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

[kwin] [Bug 448385] Escape Key should exit effect

2022-01-13 Thread Nico
https://bugs.kde.org/show_bug.cgi?id=448385

--- Comment #2 from Nico  ---
I'm in X11. I can try with Wayland later today

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

[Elisa] [Bug 447607] Make playListNotification more like Plasma notifications

2022-01-13 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=447607

Nate Graham  changed:

   What|Removed |Added

   Assignee|matthieu_gall...@yahoo.fr   |n...@kde.org

--- Comment #2 from Nate Graham  ---
Working on this.

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

[kdenlive] [Bug 446399] Kdenlive stops

2022-01-13 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=446399

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.

[systemsettings] [Bug 447707] So pretty much there are not any audio devices being detected and im wondering why I have all my devices plugged in and its just not showing the devices and its not givin

2022-01-13 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=447707

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

[okular] [Bug 447651] Jagged lines (while reviewing pdf) in Freehand drawing from wacom intuos stylus

2022-01-13 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=447651

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

[krita] [Bug 448344] Some CJK letters are not using the correct font in Krita's Android version

2022-01-13 Thread Tyson Tan
https://bugs.kde.org/show_bug.cgi?id=448344

--- Comment #6 from Tyson Tan  ---
I was able to get the fonts displayed correctly by using Configure Krita >
General > Window > Custom fonts.

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

[krita] [Bug 448343] Some translation is missing from Krita's Android version

2022-01-13 Thread Tyson Tan
https://bugs.kde.org/show_bug.cgi?id=448343

--- Comment #5 from Tyson Tan  ---
After I set the system locale back to Simplified Chinese, Krita is missing
Template Category translations again after a cold restart.

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

[kdenlive] [Bug 446170] Timeline panel does not render properly on 30 bit displays

2022-01-13 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=446170

--- Comment #9 from bog...@hlevca.com ---
I understand. I still think it is important for any visual-oriented software to
support 30-bit colors.  It is amazing that the penetration of such technologies
takes such a long time.  I have a 30-bit monitor and card supporting 30 bit
since 2014, as I am a photographer hobbyist.   They are more expensive indeed.
The problem is that Apple is not pushing it and nothing gets done. 

In any case, thanks for trying, and if you want me to test anything do not
hesitate to contact me.

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

[phonon-backend-gstreamer] [Bug 435576] Crash when resume from nonstandard resume

2022-01-13 Thread Phil
https://bugs.kde.org/show_bug.cgi?id=435576

Phil  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Resolution|WORKSFORME  |---
 Status|RESOLVED|REOPENED

--- Comment #4 from Phil  ---
Did anyone try to reproduce the crash by:

1. Wait until screen locks.
2. Instead of logging in to the lockscreen, switch to the new user login screen
3. Suspend from the new user login screen
4. Attempt to resume.

> KDE screen was locked when I wanted to resume I tried to switch to the new 
> user login screen and suspend from there. Resuming later, KDE came back in a 
> partially functional state: I could interact with the top level window but 
> not switch windows except by closing the windows on top. (desktop switching 
> also not functioning)

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

[krita] [Bug 448343] Some translation is missing from Krita's Android version

2022-01-13 Thread Tyson Tan
https://bugs.kde.org/show_bug.cgi?id=448343

--- Comment #4 from Tyson Tan  ---
Qt and KDE Framework translations are all translated in Simplified Chinese, I
did that myself a long time ago, and they have been working fine for other
packages.

I did not change Krita locale. The device's system locale is set to Simplified
Chinese. Krita detected that and automatically sets its language to Simplified
Chinese.

System Information:
Krita: 5.0.2
Languegs: zh_CN, zh

Template category translation displays correctly after I first set the device's
system language to English, then manually switched Krita's language to
Simplified Chinese.

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

[systemsettings] [Bug 448437] Large initials overflowing in "Change Avatar" view.

2022-01-13 Thread Michael Alexsander
https://bugs.kde.org/show_bug.cgi?id=448437

Michael Alexsander  changed:

   What|Removed |Added

 CC||michaelalexsander@protonmai
   ||l.com

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

[systemsettings] [Bug 448437] New: Large initials overflowing in "Change Avatar" view.

2022-01-13 Thread Michael Alexsander
https://bugs.kde.org/show_bug.cgi?id=448437

Bug ID: 448437
   Summary: Large initials overflowing in "Change Avatar" view.
   Product: systemsettings
   Version: 5.23.5
  Platform: Ubuntu Packages
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: kcm_users
  Assignee: plasma-b...@kde.org
  Reporter: michaelalexsan...@protonmail.com
CC: uhh...@gmail.com
  Target Milestone: ---

Created attachment 145443
  --> https://bugs.kde.org/attachment.cgi?id=145443=edit
Bug in action.

SUMMARY
If the name used in your user has initials that are large in width, they will
overflow their square in the "Change Avatar" view.


STEPS TO REPRODUCE
1. Change your name to start with large initials
2. Go to the "Change Avatar" view.


SOFTWARE/OS VERSIONS
KDE Plasma Version: 5.23.5
KDE Frameworks Version: 5.90.0
Qt Version: 5.15.2

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

[Elisa] [Bug 448097] Sort menu buttons could have icons for consistency

2022-01-13 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=448097

Nate Graham  changed:

   What|Removed |Added

 Resolution|--- |FIXED
  Latest Commit||https://invent.kde.org/mult
   ||imedia/elisa/commit/bda79fc
   ||5d813e7cc8f03dbcda9c216e74f
   ||332743
 Status|CONFIRMED   |RESOLVED
   Version Fixed In||22.04

--- Comment #1 from Nate Graham  ---
Git commit bda79fc5d813e7cc8f03dbcda9c216e74f332743 by Nate Graham.
Committed on 14/01/2022 at 04:00.
Pushed by ngraham into branch 'master'.

Give Sort button an icon
FIXED-IN: 22.04

M  +11   -2src/qml/NavigationActionBar.qml

https://invent.kde.org/multimedia/elisa/commit/bda79fc5d813e7cc8f03dbcda9c216e74f332743

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

[korganizer] [Bug 448425] Copy and paste an entry fails with: "Invalid parent collection"

2022-01-13 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=448425

gjditchfi...@acm.org changed:

   What|Removed |Added

 CC||gjditchfi...@acm.org
  Component|calendar|general
Product|kontact |korganizer

--- Comment #1 from gjditchfi...@acm.org ---
When you create the appointment in step 1, which calendar do you create it in? 
What sort of calendar is it -- local file, Nextcloud, ... ?

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

[digikam] [Bug 289911] 23HQ should be split from flickr uploader as a new export tool

2022-01-13 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=289911

caulier.gil...@gmail.com changed:

   What|Removed |Added

  Component|Plugin-Generic-WishForNewTo |Plugin-WebService-Flickr
   |ols |

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

[digikam] [Bug 190315] 23hq.com service not work

2022-01-13 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=190315

caulier.gil...@gmail.com changed:

   What|Removed |Added

  Component|Plugin-Generic-WishForNewTo |Plugin-WebService-Flickr
   |ols |

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

[digikam] [Bug 293756] develop iOS client (iPhone,iPod,iPad)

2022-01-13 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=293756

caulier.gil...@gmail.com changed:

   What|Removed |Added

  Component|Plugin-Generic-WishForNewTo |Plugin-Generic-MediaServer
   |ols |

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

[digikam] [Bug 394588] Exports: being able to block an export if there is some missing tags

2022-01-13 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=394588

caulier.gil...@gmail.com changed:

   What|Removed |Added

   Severity|normal  |wishlist

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

[digikam] [Bug 298020] Allow to store passwords used by remote web services

2022-01-13 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=298020

caulier.gil...@gmail.com changed:

   What|Removed |Added

   Severity|normal  |wishlist

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

[Elisa] [Bug 448083] Sort menu dropdowns are mispositioned

2022-01-13 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=448083

Nate Graham  changed:

   What|Removed |Added

 Status|CONFIRMED   |RESOLVED
   Version Fixed In||21.12.2
  Latest Commit||https://invent.kde.org/mult
   ||imedia/elisa/commit/45635e3
   ||62aebe526b00cbde0196d452f16
   ||600965
 Resolution|--- |FIXED

--- Comment #1 from Nate Graham  ---
Git commit 45635e362aebe526b00cbde0196d452f16600965 by Nate Graham.
Committed on 14/01/2022 at 03:45.
Pushed by ngraham into branch 'release/21.12'.

Fix sort menu positioning
FIXED-IN: 21.12.2

M  +2-1src/qml/NavigationActionBar.qml

https://invent.kde.org/multimedia/elisa/commit/45635e362aebe526b00cbde0196d452f16600965

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

[digikam] [Bug 116152] Add display calibration dialog/wizard

2022-01-13 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=116152

caulier.gil...@gmail.com changed:

   What|Removed |Added

  Component|Plugin-Editor-WishForNewToo |Plugin-Generic-WishForNewTo
   |ls  |ols

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

[digikam] [Bug 234545] Red eye correction tool is missing from image editor

2022-01-13 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=234545

caulier.gil...@gmail.com changed:

   What|Removed |Added

  Component|Plugin-Editor-WishForNewToo |Faces-RedEyes
   |ls  |

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

[digikam] [Bug 147367] Support for color correction of Oval frame fade using unfaded outer fame colors

2022-01-13 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=147367

caulier.gil...@gmail.com changed:

   What|Removed |Added

  Component|Plugin-Editor-ColorManageme |Plugin-Editor-GmicQt
   |nt  |

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

[digikam] [Bug 196075] Creating a quick-fix dialogue would give digiKam a real edge

2022-01-13 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=196075

caulier.gil...@gmail.com changed:

   What|Removed |Added

  Component|Plugin-Editor-WishForNewToo |Plugin-Bqm-AutoCorrection
   |ls  |

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

[digikam] [Bug 148796] autoalign / join multiple images

2022-01-13 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=148796

caulier.gil...@gmail.com changed:

   What|Removed |Added

  Component|Plugin-Editor-WishForNewToo |Plugin-Generic-Panorama
   |ls  |
 CC||caulier.gil...@gmail.com

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

[digikam] [Bug 147367] Support for color correction of Oval frame fade using unfaded outer fame colors

2022-01-13 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=147367

caulier.gil...@gmail.com changed:

   What|Removed |Added

  Component|Plugin-Editor-WishForNewToo |Plugin-Editor-ColorManageme
   |ls  |nt

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

[digikam] [Bug 353789] Add new tool to apply Lut3D on image [patch]

2022-01-13 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=353789

caulier.gil...@gmail.com changed:

   What|Removed |Added

  Component|Plugin-Editor-WishForNewToo |Plugin-Editor-3DLut
   |ls  |

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

[krita] [Bug 448344] Some CJK letters are not using the correct font in Krita's Android version

2022-01-13 Thread Tyson Tan
https://bugs.kde.org/show_bug.cgi?id=448344

--- Comment #5 from Tyson Tan  ---
I'm using MIUI 12.5 International on a Mi 10T Pro (Hong Kong version). Language
is set to Simplified Chinese. I'm pretty sure MIUI is using a unique default
font other than Noto-Sans-CJK, maybe 小米兰亭 Pro. There is no way to customize
MIUI's system font to confirm though. I'm also sure that all major Chinese
manufactures has their unique default font as well.

It's also possible that MIUI International ROM has some weird font issues, the
font style looks less coherent than the mainland version. I will test this
later on a mainland Chinese MIUI.

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

[konsole] [Bug 448414] --list-profiles and --list-profile-properties ignored

2022-01-13 Thread Kurt Hindenburg
https://bugs.kde.org/show_bug.cgi?id=448414

Kurt Hindenburg  changed:

   What|Removed |Added

Version|21.08.1 |master

--- Comment #2 from Kurt Hindenburg  ---
I see this issue on a recent version of master

https://invent.kde.org/utilities/konsole/-/commit/372c14da6ad480448b16ed6dd9daa5b784cb2d7f

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

[plasmashell] [Bug 433386] Files with large names are truncated and cannot be read

2022-01-13 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=433386

Bug Janitor Service  changed:

   What|Removed |Added

 Status|CONFIRMED   |ASSIGNED

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

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

[digikam] [Bug 448432] Importing images to be folderized by date causes them to be folderized by import date, not the date the picture was taken

2022-01-13 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=448432

caulier.gil...@gmail.com changed:

   What|Removed |Added

 CC||caulier.gil...@gmail.com
   Platform|Other   |Microsoft Windows

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

[digikam] [Bug 416462] fuzzy search doesn't find photo which is rotated

2022-01-13 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=416462

caulier.gil...@gmail.com changed:

   What|Removed |Added

Version|unspecified |7.5.0

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

[plasmashell] [Bug 448436] New: Favorite apps disappear temporarily from the menu after a new app install or packages update

2022-01-13 Thread V
https://bugs.kde.org/show_bug.cgi?id=448436

Bug ID: 448436
   Summary: Favorite apps disappear temporarily from the menu
after a new app install or packages update
   Product: plasmashell
   Version: 5.18.7
  Platform: Kubuntu Packages
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: Application Launcher (Kickoff)
  Assignee: k...@davidedmundson.co.uk
  Reporter: bugsreporting.56...@simplelogin.co
CC: mikel5...@gmail.com, plasma-b...@kde.org
  Target Milestone: 1.0

Created attachment 145442
  --> https://bugs.kde.org/attachment.cgi?id=145442=edit
The blank page that should show favorite apps

SUMMARY
The favorites section in the application's menu becomes blank after installing
a new app or updating packages, requiring to click on a category and back to
"all applications" to reset and show them all up again.


STEPS TO REPRODUCE
1.  Install a new app or update packages via Discover
2.  Open the Application Launcher
3.  (fix) Select a different category on the Application Menu and back to the
default/previous category.

OBSERVED RESULT
The Applications Menu displays the page blank, not showing favorite apps

EXPECTED RESULT
To display all the favorite apps

SOFTWARE/OS VERSIONS
Operating System: Kubuntu 20.04
KDE Plasma Version: 5.18.7 (though noticed in newer versions)
KDE Frameworks Version: 5.68.0
Qt Version: 5.12.8

ADDITIONAL INFORMATION
This bug happens not only in Simple Menu but also on all options available on
the Application Launcher switcher, including the default option

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

[kwin] [Bug 448435] New: Overview effect's shortcut breaks a lot

2022-01-13 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=448435

Bug ID: 448435
   Summary: Overview effect's shortcut breaks a lot
   Product: kwin
   Version: git master
  Platform: Fedora RPMs
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: effects-overview
  Assignee: kwin-bugs-n...@kde.org
  Reporter: n...@kde.org
  Target Milestone: ---

On Wayland, my default Meta+W shortcut breaks a lot. It's set correctly in the
shortcuts KCM, but just kind of randomly stops working sometimes.

Restarting KWin fixes it, and then within an hour or two, it will break again
until the next time KWin is restarted.

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

[kinfocenter] [Bug 448428] The texts "Copy to Clipboard" and "Copy to Clipboard in English" doesn't show translated on other languages.

2022-01-13 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=448428

--- Comment #4 from zocsfxljsgpmiua...@protonmail.com ---
I think one of the problems is that the "Messages.sh" script does not extract
the texts from qml files.

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

[kinfocenter] [Bug 448428] The texts "Copy to Clipboard" and "Copy to Clipboard in English" doesn't show translated on other languages.

2022-01-13 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=448428

Nate Graham  changed:

   What|Removed |Added

 Resolution|WAITINGFORINFO  |---
   Severity|minor   |normal
 Status|NEEDSINFO   |REPORTED

--- Comment #3 from Nate Graham  ---
How strange. Because none of them have a translation domain set. I wonder
what's up.

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

[Breeze] [Bug 447886] Incorrect padding for certain Qt applications (Digikam, TeXStudio)

2022-01-13 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=447886

--- Comment #11 from Nate Graham  ---
Not even in Plasma 5.23 or the 5.24 beta? These have much better NVIDIA Wayland
support.

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

[Skanlite] [Bug 448326] Consider changing Skanlite to open the .~/Pictures folder when saving scans

2022-01-13 Thread Photon
https://bugs.kde.org/show_bug.cgi?id=448326

--- Comment #4 from Photon  ---
I think this would be good: open the Pictures folder in the first time and then
open the last used folder (if the user changes it).

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

[Skanlite] [Bug 448326] Consider changing Skanlite to open the .~/Pictures folder when saving scans

2022-01-13 Thread Photon
https://bugs.kde.org/show_bug.cgi?id=448326

--- Comment #3 from Photon  ---
opens*

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

[Skanlite] [Bug 448326] Consider changing Skanlite to open the .~/Pictures folder when saving scans

2022-01-13 Thread Photon
https://bugs.kde.org/show_bug.cgi?id=448326

--- Comment #2 from Photon  ---
Yes! It always open the home folder.

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

[Breeze] [Bug 448370] In SDDM, make the battery and the virtual keyboard icons that same present in the system tray

2022-01-13 Thread Photon
https://bugs.kde.org/show_bug.cgi?id=448370

--- Comment #4 from Photon  ---
Understood. I think the battery icon doesn't need to have the overlay, it just
needs to be the same as the systray one. Also, maybe the icons could be a
little bigger and vertically aligned (the virtual keyboard isn't) and this
would also improve the battery icon crispiness, because currently it looks
blurred.

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

[Planet KDE] [Bug 448434] New: Black screen after suspend, hibernate, or visiting a system console

2022-01-13 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=448434

Bug ID: 448434
   Summary: Black screen after suspend, hibernate, or visiting a
system console
   Product: Planet KDE
   Version: unspecified
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: major
  Priority: NOR
 Component: general
  Assignee: c...@walagran.com
  Reporter: kdbase-kde...@yahoo.com
  Target Milestone: ---

SUMMARY
***
NOTE: If you are reporting a crash, please try to attach a backtrace with debug
symbols.
See
https://community.kde.org/Guidelines_and_HOWTOs/Debugging/How_to_create_useful_crash_reports
***


STEPS TO REPRODUCE
1. Log into KDE Plama
2. Leave the session temporarily, either with system suspend or hibernate, or
entering, for example, ctrl-alt-f4 to use a system console.
3. Return to the plasma session, either by waking up from suspend or hibernate,
or entering alt-f1 to go back from a virtual console.

OBSERVED RESULT
The screen is all black.  I cannot get the session back.  If I open a system
console with ctrl-alt-f4, I can kill the processes in the session and try
again, although I normally log into a different DE, GNOME in my case.

EXPECTED RESULT
Return to plasma shell, with all state properly restored (if necessary).

SOFTWARE/OS VERSIONS
Windows: 
macOS: 
Linux/KDE Plasma: 5.23.90, in Arch Linux
(available in About System)
KDE Plasma Version: 5.23.90
KDE Frameworks Version: ?? I don't know
Qt Version: 5

ADDITIONAL INFORMATION
I have seen this problem referenced elsewhere.  It's been present for a number
of months.  I thought it might be fixed in 5.24.  Arch Linux released the beta
of 5.24 today, and I checked to see if it was fixed, but the problem is still
present.

My processor is from AMD.  The graphics chip is radeon.

The problem is similar to the report for bug 447647, and may well be a
duplicate.

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

[lattedock] [Bug 448433] New: Latte does not unhide in 0.10.7

2022-01-13 Thread PQCraft
https://bugs.kde.org/show_bug.cgi?id=448433

Bug ID: 448433
   Summary: Latte does not unhide in 0.10.7
   Product: lattedock
   Version: 0.10.7
  Platform: Archlinux Packages
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: application
  Assignee: mvourla...@gmail.com
  Reporter: 0456...@gmail.com
  Target Milestone: ---

SUMMARY
I have latte set up as a top bar due to its "Dodge all windows" feature (it
would be nice if standard plasma had this so I wouldn't be wasting RAM running
2 things that basically do the same thing) and it will not show when I put the
mouse at the top of the screen. It works perfectly fine on 0.10.6 but broke
after updating to 0.10.7. I temporarily solved this by downgrading to 0.10.6
and holding the package.

STEPS TO REPRODUCE
1. Upgrade to 0.10.7
2. Have latte set up as a top bar
3. Set mode to "Dodge all windows"
4. Move mouse to top of the screen to access the bar

OBSERVED RESULT
Bar does not show

EXPECTED RESULT
Bar slides down

SOFTWARE/OS VERSIONS
Linux Kernel Version: 5.15.13
KDE Plasma Version: 5.23.5
KDE Frameworks Version: 5.90.0
Qt Version: 5.15.2

ADDITIONAL INFORMATION
-

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

[digikam] [Bug 448432] New: Importing images to be folderized by date causes them to be folderized by import date, not the date the picture was taken

2022-01-13 Thread Judah Richardson
https://bugs.kde.org/show_bug.cgi?id=448432

Bug ID: 448432
   Summary: Importing images to be folderized by date causes them
to be folderized by import date, not the date the
picture was taken
   Product: digikam
   Version: 7.4.0
  Platform: Other
OS: Microsoft Windows
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: Import-Albums
  Assignee: digikam-bugs-n...@kde.org
  Reporter: judahrichard...@gmail.com
  Target Milestone: ---

SUMMARY
***
NOTE: If you are reporting a crash, please try to attach a backtrace with debug
symbols.
See
https://community.kde.org/Guidelines_and_HOWTOs/Debugging/How_to_create_useful_crash_reports
***


STEPS TO REPRODUCE
1. Open digiKam
2. Attempt to import all the images from a folder with date-based sub-albums
enabled
3. Import the images. 

OBSERVED RESULT

All the imported images will be placed in a folder corresponding to the import
date, not the date the picture was taken

EXPECTED RESULT

All the imported images should be placed in a folder corresponding to the date
the picture was taken

SOFTWARE/OS VERSIONS
Windows: 10 x64
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.

[kcalc] [Bug 447347] pasting numbers starting with zero are parsed as octal

2022-01-13 Thread Matteo Croce
https://bugs.kde.org/show_bug.cgi?id=447347

--- Comment #4 from Matteo Croce  ---
The problem is that the issue is very silet.
An user can paste "01234" in kcalc and the calculations will be wrong without
noticing.
That's what happened to me, I pasted an hex offset, something like 0123 and
it was converted.

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

[Breeze] [Bug 447886] Incorrect padding for certain Qt applications (Digikam, TeXStudio)

2022-01-13 Thread Freddie Witherden
https://bugs.kde.org/show_bug.cgi?id=447886

--- Comment #10 from Freddie Witherden  ---
(In reply to Nate Graham from comment #9)
> Oh that.
> 
> Does everything magically work perfectly in the Plasma Wayland session, by
> any chance?

For my sins I am on an NVIDIA system which does not have functional Wayland
support.

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

[krita] [Bug 448431] MAJOR Animation playback bug and render bug

2022-01-13 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=448431

--- Comment #1 from mayudev...@gmail.com ---
Created attachment 145441
  --> https://bugs.kde.org/attachment.cgi?id=145441=edit
this shows how the animation doesnt line up when rendered, but lines up in the
program. along with the glitchy audio and lag.

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

[systemsettings] [Bug 448388] Weird behaviour when openning Gamma with Night color enabled

2022-01-13 Thread Patrick Silva
https://bugs.kde.org/show_bug.cgi?id=448388

Patrick Silva  changed:

   What|Removed |Added

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

--- Comment #1 from Patrick Silva  ---


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

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

[systemsettings] [Bug 413134] Night color conflicts with color correction

2022-01-13 Thread Patrick Silva
https://bugs.kde.org/show_bug.cgi?id=413134

Patrick Silva  changed:

   What|Removed |Added

 CC||m...@iyanmv.com

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

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

[kinfocenter] [Bug 448428] The texts "Copy to Clipboard" and "Copy to Clipboard in English" doesn't show translated on other languages.

2022-01-13 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=448428

--- Comment #2 from zocsfxljsgpmiua...@protonmail.com ---
They do. It seems like those texts (the "Copy Clipboard ..." ones)  aren't on
the .po files too.

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

[krita] [Bug 448431] New: MAJOR Animation playback bug and render bug

2022-01-13 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=448431

Bug ID: 448431
   Summary: MAJOR Animation playback bug and render bug
   Product: krita
   Version: 5.0.2
  Platform: Compiled Sources
OS: Microsoft Windows
Status: REPORTED
  Severity: major
  Priority: NOR
 Component: Animation
  Assignee: krita-bugs-n...@kde.org
  Reporter: mayudev...@gmail.com
  Target Milestone: ---

SUMMARY
***
NOTE: If you are reporting a crash, please try to attach a backtrace with debug
symbols.
See
https://community.kde.org/Guidelines_and_HOWTOs/Debugging/How_to_create_useful_crash_reports
***


STEPS TO REPRODUCE
1. create several frames of animation on Krita
2. Add an mp4 audio
3. render the video

OBSERVED RESULT
the audio was way off, the timing wasn't anywhere near accurate despite having
timed it correctly in the program itself. 

EXPECTED RESULT
animation that resembles what im shown when played in the program itself. When
the video is rendered, it should match up with the audio like it did in the
program, but it failed to do this.

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

ADDITIONAL INFORMATION:
Krita

 Version: 5.0.2
 Languages: en_US, en
 Hidpi: true

Qt

  Version (compiled): 5.12.12
  Version (loaded): 5.12.12

OS Information

  Build ABI: x86_64-little_endian-llp64
  Build CPU: x86_64
  CPU: x86_64
  Kernel Type: winnt
  Kernel Version: 10.0.19043
  Pretty Productname: Windows 10 (10.0)
  Product Type: windows
  Product Version: 10

OpenGL Info

  Vendor:  "Google Inc." 
  Renderer:  "ANGLE (Intel(R) HD Graphics 620 Direct3D11 vs_5_0 ps_5_0)" 
  Version:  "OpenGL ES 3.0 (ANGLE 2.1.0.57ea533f79a7)" 
  Shading language:  "OpenGL ES GLSL ES 3.00 (ANGLE 2.1.0.57ea533f79a7)" 
  Requested format:  QSurfaceFormat(version 3.0, options
QFlags(DeprecatedFunctions), depthBufferSize 24,
redBufferSize 8, greenBufferSize 8, blueBufferSize 8, alphaBufferSize 8,
stencilBufferSize 8, samples -1, swapBehavior QSurfaceFormat::DoubleBuffer,
swapInterval 0, colorSpace QSurfaceFormat::DefaultColorSpace, profile 
QSurfaceFormat::CompatibilityProfile) 
  Current format:  QSurfaceFormat(version 3.0, options
QFlags(), depthBufferSize 24, redBufferSize 8,
greenBufferSize 8, blueBufferSize 8, alphaBufferSize 8, stencilBufferSize 8,
samples 0, swapBehavior QSurfaceFormat::DefaultSwapBehavior, swapInterval 0,
colorSpace QSurfaceFormat::DefaultColorSpace, profile 
QSurfaceFormat::NoProfile) 
 Version: 3.0
 Supports deprecated functions false 
 is OpenGL ES: true 
  supportsBufferMapping: true 
  supportsBufferInvalidation: false 
  Extensions: 
 "GL_EXT_blend_minmax" 
 "GL_ANGLE_framebuffer_blit" 
 "GL_CHROMIUM_bind_generates_resource" 
 "GL_OES_standard_derivatives" 
 "GL_ANGLE_pack_reverse_row_order" 
 "GL_EXT_texture_storage" 
 "GL_KHR_debug" 
 "GL_CHROMIUM_color_buffer_float_rgba" 
 "GL_ANGLE_robust_client_memory" 
 "GL_EXT_disjoint_timer_query" 
 "GL_EXT_discard_framebuffer" 
 "GL_OES_texture_half_float" 
 "GL_ANGLE_instanced_arrays" 
 "GL_EXT_texture_format_BGRA" 
 "GL_ANGLE_texture_compression_dxt3" 
 "GL_ANGLE_texture_usage" 
 "GL_EXT_unpack_subimage" 
 "GL_OES_element_index_uint" 
 "GL_EXT_debug_marker" 
 "GL_OES_compressed_ETC1_RGB8_texture" 
 "GL_NV_pack_subimage" 
 "GL_OES_texture_float_linear" 
 "GL_ANGLE_depth_texture" 
 "GL_OES_EGL_image_external_essl3" 
 "GL_OES_texture_half_float_linear" 
 "GL_ANGLE_client_arrays" 
 "GL_CHROMIUM_bind_uniform_location" 
 "GL_CHROMIUM_copy_texture" 
 "GL_EXT_read_format_bgra" 
 "GL_CHROMIUM_color_buffer_float_rgb" 
 "GL_OES_depth32" 
 "GL_ANGLE_lossy_etc_decode" 
 "GL_CHROMIUM_sync_query" 
 "GL_EXT_texture_rg" 
 "" 
 "GL_ANGLE_program_cache_control" 
 "GL_EXT_map_buffer_range" 
 "GL_ANGLE_multiview" 
 "GL_EXT_color_buffer_half_float" 
 "GL_EXT_robustness" 
 "GL_OES_EGL_image" 
 "GL_ANGLE_translated_shader_source" 
 "GL_NV_pixel_buffer_object" 
 "GL_EXT_occlusion_query_boolean" 
 "GL_OES_texture_float" 
 "GL_ANGLE_framebuffer_multisample" 
 "GL_EXT_texture_compression_s3tc_srgb" 
 "GL_NV_EGL_stream_consumer_external" 
 "GL_ANGLE_texture_compression_dxt5" 
 "GL_NV_fence" 
 "GL_OES_packed_depth_stencil" 
 "GL_OES_texture_npot" 
 "GL_OES_EGL_image_external" 
 "GL_EXT_color_buffer_float" 
 "GL_OES_get_program_binary" 
 "GL_OES_vertex_array_object" 
 "GL_OES_mapbuffer" 
 "GL_EXT_texture_compression_dxt1" 
 "GL_EXT_frag_depth" 
 "GL_EXT_texture_filter_anisotropic" 
 "GL_EXT_shader_texture_lod" 
 "GL_CHROMIUM_copy_compressed_texture" 
 "GL_EXT_draw_buffers" 
 "GL_EXT_sRGB" 
 "GL_EXT_texture_norm16" 
 

[krita] [Bug 448430] New: Bug with rendering animations

2022-01-13 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=448430

Bug ID: 448430
   Summary: Bug with rendering animations
   Product: krita
   Version: unspecified
  Platform: Microsoft Windows
OS: Microsoft Windows
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: Animation
  Assignee: krita-bugs-n...@kde.org
  Reporter: elgin.p.sm...@gmail.com
  Target Milestone: ---

Created attachment 145440
  --> https://bugs.kde.org/attachment.cgi?id=145440=edit
"error"

So, whenever I try to render my animations, it always has this weird updating
thing at the bottom of the screen then it keeps glitching and turning from 15
to 0 over and over again very fast too, then it will get to only 98% and will
say "could not render animation unknown error" which means I can't turn my
animations into video files.

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

[systemsettings] [Bug 448429] The option to change the scroll speed doesn't appear on X11 using the libinput driver

2022-01-13 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=448429

Nate Graham  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
 Resolution|--- |NOT A BUG
 CC||n...@kde.org

--- Comment #1 from Nate Graham  ---
That's because there is no such option in Libinput. :)

On Wayland we manufacture it ourselves in KWin to work around the lack of this
setting in Libinput itself. But that's not an option on X11 unfortunately.

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

[kinfocenter] [Bug 448428] The texts "Copy to Clipboard" and "Copy to Clipboard in English" doesn't show translated on other languages.

2022-01-13 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=448428

Nate Graham  changed:

   What|Removed |Added

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

--- Comment #1 from Nate Graham  ---
Looks like it might be a different issue actually. Do the labels on the left
get translated into other languages?

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

[systemsettings] [Bug 448427] The texts "Slower" and "Faster" on the Scrolling Speed option doesn't show translated on other languages

2022-01-13 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=448427

Nate Graham  changed:

   What|Removed |Added

  Latest Commit|https://invent.kde.org/plas |https://invent.kde.org/plas
   |ma/plasma-desktop/commit/fd |ma/plasma-desktop/commit/e0
   |9f2f0013fa8fea672827aedd3a1 |b9fe19776d79e2ab840d972b120
   |f1da720a030 |8d76289d713

--- Comment #2 from Nate Graham  ---
Git commit e0b9fe19776d79e2ab840d972b1208d76289d713 by Nate Graham.
Committed on 14/01/2022 at 01:36.
Pushed by ngraham into branch 'Plasma/5.24'.

kcms/mouse: fix missing i18n domain for two strings
FIXED-IN: 5.24
(cherry picked from commit fd9f2f0013fa8fea672827aedd3a1f1da720a030)

M  +2-2kcms/mouse/kcm/libinput/main.qml

https://invent.kde.org/plasma/plasma-desktop/commit/e0b9fe19776d79e2ab840d972b1208d76289d713

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

[systemsettings] [Bug 448427] The texts "Slower" and "Faster" on the Scrolling Speed option doesn't show translated on other languages

2022-01-13 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=448427

Nate Graham  changed:

   What|Removed |Added

   Version Fixed In||5.24
 Resolution|--- |FIXED
  Latest Commit||https://invent.kde.org/plas
   ||ma/plasma-desktop/commit/fd
   ||9f2f0013fa8fea672827aedd3a1
   ||f1da720a030
 Status|REPORTED|RESOLVED

--- Comment #1 from Nate Graham  ---
Git commit fd9f2f0013fa8fea672827aedd3a1f1da720a030 by Nate Graham.
Committed on 14/01/2022 at 01:35.
Pushed by ngraham into branch 'master'.

kcms/mouse: fix missing i18n domain for two strings
FIXED-IN: 5.24

M  +2-2kcms/mouse/kcm/libinput/main.qml

https://invent.kde.org/plasma/plasma-desktop/commit/fd9f2f0013fa8fea672827aedd3a1f1da720a030

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

[systemsettings] [Bug 448429] New: The option to change the scroll speed doesn't appear on X11 using the libinput driver

2022-01-13 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=448429

Bug ID: 448429
   Summary: The option to change the scroll speed doesn't appear
on X11 using the libinput driver
   Product: systemsettings
   Version: 5.23.4
  Platform: Gentoo Packages
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: kcm_mouse
  Assignee: plasma-b...@kde.org
  Reporter: zocsfxljsgpmiua...@protonmail.com
  Target Milestone: ---

SUMMARY
The option to change the scroll speed doesn't appear on X11 using the libinput
driver but it does on Wayland and on X11 using the evdev driver.

SOFTWARE/OS VERSIONS
KDE Plasma Version: 5.23.4
KDE Frameworks Version: 5.88.0
Qt Version: 5.15.2

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

[kdenlive] [Bug 446170] Timeline panel does not render properly on 30 bit displays

2022-01-13 Thread Julius Künzel
https://bugs.kde.org/show_bug.cgi?id=446170

Julius Künzel  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|REPORTED|CONFIRMED

--- Comment #8 from Julius Künzel  ---
Okay, thanks! So it is definitely a QML issue. I did a quick research but
couldn't find any useful information about this. Also I think nobody in the dev
team has a 30bit Monitor atm to debug it so it unfortunately might not be fixed
very soon :-(

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

[plasmashell] [Bug 448420] Autohide panel shown in tablet mode when rotated

2022-01-13 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=448420

Nate Graham  changed:

   What|Removed |Added

 Status|REPORTED|CONFIRMED
 Ever confirmed|0   |1
Summary|Panel shown in tablet mode  |Autohide panel shown in
   |on rotate when autohide |tablet mode when rotated
   |enabled |
 CC||n...@kde.org

--- Comment #1 from Nate Graham  ---
Can confirm.

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

  1   2   3   4   5   6   7   >