[kmymoney] [Bug 486876] Show balance button on Ledger view is negative

2024-05-11 Thread Thomas Baumgart
https://bugs.kde.org/show_bug.cgi?id=486876

--- Comment #4 from Thomas Baumgart  ---
KMyMoney normally works with the "Credit account" option (displays a positive
balance for account types that would normally carry a credit balance (income,
credit, liability, equity)). It just does not do it for the graph
representation of the balance chart, though.

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

[valgrind] [Bug 450788] unhandled instruction 0xD50B7A22 [aarch64]

2024-05-11 Thread Paul Floyd
https://bugs.kde.org/show_bug.cgi?id=450788

Paul Floyd  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|REPORTED|RESOLVED

--- Comment #1 from Paul Floyd  ---
0xD50B7A22 is dc cvac, this should now be handled.

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

[valgrind] [Bug 450788] unhandled instruction 0xD50B7A22 [aarch64]

2024-05-11 Thread Paul Floyd
https://bugs.kde.org/show_bug.cgi?id=450788

Paul Floyd  changed:

   What|Removed |Added

Summary|valgrind: Unrecognised  |unhandled instruction
   |instruction at address  |0xD50B7A22 [aarch64]
   |0x8f24da0 [aarch64] |
   Assignee|jsew...@acm.org |pjfl...@wanadoo.fr

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

[valgrind] [Bug 453044] gbserver_tests failures in aarch64

2024-05-11 Thread Paul Floyd
https://bugs.kde.org/show_bug.cgi?id=453044

Paul Floyd  changed:

   What|Removed |Added

 CC||pjfl...@wanadoo.fr
   Assignee|jsew...@acm.org |pjfl...@wanadoo.fr

--- Comment #2 from Paul Floyd  ---
Which version of gdb was this with?

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

[valgrind] [Bug 430117] Implement guest Arm64/AArch64 feature detection support for v8 instructions

2024-05-11 Thread Paul Floyd
https://bugs.kde.org/show_bug.cgi?id=430117

Paul Floyd  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|REPORTED|RESOLVED
 CC||pjfl...@wanadoo.fr

--- Comment #1 from Paul Floyd  ---
I think that this was mostly resolved with
9ecbb9037b596babf69745f9e212c80b2cef4174 [Bug 392146 - aarch64: unhandled
instruction 0xD5380001 (MRS rT, midr_el1)]

Specifically, MRS ID_AA64ISAR0_EL1 end similar registers are now handled, with
filtering in the dirty helper to filter out unsupported features.

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

[digikam] [Bug 486878] Wrong date when downloading videos from Canon EOS R7

2024-05-11 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=486878

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

   What|Removed |Added

 CC||caulier.gil...@gmail.com

--- Comment #5 from caulier.gil...@gmail.com ---
I will rebuild the Linux bundle today :

https://files.kde.org/digikam/

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

[plasmashell] [Bug 485223] Traditional Task Manager overflows space right of itself in multi row mode

2024-05-11 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=485223

Nate Graham  changed:

   What|Removed |Added

 CC||jtam...@gmail.com

--- Comment #15 from Nate Graham  ---
*** Bug 468195 has been marked as a duplicate of this bug. ***

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

[plasmashell] [Bug 468195] Last task in multi-row Task Manager can overlap with adjacent panel widgets

2024-05-11 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=468195

Nate Graham  changed:

   What|Removed |Added

 Status|CONFIRMED   |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #6 from Nate Graham  ---


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

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

[kdeconnect] [Bug 486911] Some notifications have an extra empty button since 24.02.0

2024-05-11 Thread yan12125
https://bugs.kde.org/show_bug.cgi?id=486911

--- Comment #1 from yan12125  ---
The bug seems caused by
https://invent.kde.org/frameworks/knotifications/-/commit/0b0cb05ce751ca5524f774224632668a0ea48c30#e522d5d47789104af70f49d867223dfc2d02bf0d_192_195.
After that commit, actionsString always starts with a semicolon. A possible fix
might be:

diff --git a/src/notifybysnore.cpp b/src/notifybysnore.cpp
index a82d0a4..3a7aa2d 100644
--- a/src/notifybysnore.cpp
+++ b/src/notifybysnore.cpp
@@ -192,7 +192,10 @@ void NotifyBySnore::notifyDeferred(KNotification
*notification)

 for (KNotificationAction *action : actions) {
 action->setId(action->label());
-actionsString += QLatin1Char(';') + action->label();
+if (!actionsString.isEmpty()) {
+actionsString += QLatin1Char(';');
+}
+actionsString += action->label();
 }

 snoretoastArgsList << QStringLiteral("-b") << actionsString;

I didn't test it, as https://community.kde.org/KDEConnect/Build_Windows
suggests Visual Studio, and I had bad experience with that huge IDE.

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

[kdenlive] [Bug 471094] Be able to select panels without firing up any action in the process...

2024-05-11 Thread Gabriel Gazzán
https://bugs.kde.org/show_bug.cgi?id=471094

--- Comment #2 from Gabriel Gazzán  ---
(In reply to emohr from comment #1)
> Monitor: clicking into monitor start/stop playback. Since 24.05: Can be
> disabled in settings -> playback (commit:
> https://invent.kde.org/multimedia/kdenlive/-/commit/
> 2d38282912cf2d6f4043e39c1cf9a1466f176b19) 
> 
> Timline: Yes that is on the to do list:
> https://invent.kde.org/multimedia/kdenlive/-/work_items/1621

Thank you!

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

[kdeconnect] [Bug 486911] New: Some notifications have an extra empty button since 24.02.0

2024-05-11 Thread yan12125
https://bugs.kde.org/show_bug.cgi?id=486911

Bug ID: 486911
   Summary: Some notifications have an extra empty button since
24.02.0
Classification: Applications
   Product: kdeconnect
   Version: 24.02.0
  Platform: Microsoft Windows
OS: Microsoft Windows
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: windows-application
  Assignee: piyushaggarwal...@gmail.com
  Reporter: yu3actxt2tttf...@chyen.cc
  Target Milestone: ---

Created attachment 169391
  --> https://bugs.kde.org/attachment.cgi?id=169391=edit
An example notification with an extra empty button

SUMMARY
In KDE Connect 24.02.0, some notifications have an extra empty button (see the
screenshot below). I remember notifications are normal in 23.08.1.
Notifications are normal as well for 24.02.2 on Arch Linux.

STEPS TO REPRODUCE
1. Connect Android with Windows via KDE Connect and enable synchronization of
notifications
2. Install an Android application that sends notifications with buttons (ex:
RxDroid as in my screenshot)
3. Let the Android application send a notification

OBSERVED RESULT
Synchronized notifications on Windows have an extra empty button

EXPECTED RESULT
Synchronized notifications on Windows have only buttons specified by the
Android application

SOFTWARE/OS VERSIONS
Windows: 10
KDE Plasma Version: 24.02.0
KDE Frameworks Version: 6.0.0
Qt Version: 6.6.2

ADDITIONAL INFORMATION

When I run kdeconnectd.exe with logging, I noticed it passes something strange
to SnoreToast:

$env:QT_LOGGING_RULES="*.debug=true; qt.*.debug=false"
& 'C:\Program Files\KDE Connect\bin\kdeconnectd.exe'
(...some other logs...)
2024-05-12T11:31:20 kf.notifications: SnoreToast process starting: QList("-id",
"2", "-t", "RxDroid", "-m", "Doses: 1 missed", "-appID", "kdeconnect.daemon",
"-pid", "2328", "-pipename", ".\\pipe\\9415449995397050792", "-p",
"C:/Users/user/AppData/Local/Temp/kdeconnect.daemon-WsCDWr/2", "-b", ";Take
all")

The last argument ";Take all" may be why I get two buttons - one empty and
another normal one.

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

[plasmashell] [Bug 485431] Crash when closing balenaEtcher

2024-05-11 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=485431

Bug Janitor Service  changed:

   What|Removed |Added

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

[okular] [Bug 484294] Size of the text in forms while editing is dependent on pdf size

2024-05-11 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=484294

Bug Janitor Service  changed:

   What|Removed |Added

 Status|NEEDSINFO   |RESOLVED
 Resolution|WAITINGFORINFO  |WORKSFORME

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

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

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

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

[plasmashell] [Bug 484286] Taskbar error icons

2024-05-11 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=484286

Bug Janitor Service  changed:

   What|Removed |Added

 Resolution|WAITINGFORINFO  |WORKSFORME
 Status|NEEDSINFO   |RESOLVED

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

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

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

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

[kdenlive] [Bug 485259] does not appear video

2024-05-11 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=485259

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

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

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

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

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

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

[plasmashell] [Bug 484139] Global Menu in toolbar not showing on applications.

2024-05-11 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=484139

Bug Janitor Service  changed:

   What|Removed |Added

 Status|NEEDSINFO   |RESOLVED
 Resolution|WAITINGFORINFO  |WORKSFORME

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

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

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

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

[Spectacle] [Bug 486165] Only part of the "Save as" and "Annotation" toolbars are visible taking screenshot on dual monitor setup

2024-05-11 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=486165

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

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

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

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

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

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

[kwin] [Bug 447819] Plasma mobile: do not show SSD title bar for GTK apps

2024-05-11 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=447819

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

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

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

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

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

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

[kdialog] [Bug 486910] New: `--geometry` argument is completely ignored

2024-05-11 Thread Michael Alexsander
https://bugs.kde.org/show_bug.cgi?id=486910

Bug ID: 486910
   Summary: `--geometry` argument is completely ignored
Classification: Applications
   Product: kdialog
   Version: 24.02.2
  Platform: Fedora RPMs
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: br...@frogmouth.net
  Reporter: michaelalexsan...@protonmail.com
  Target Milestone: ---

SUMMARY
I don't just mean that it throws away the argument's value, I mean that I
couldn't even find it being parse in the source code itself.

STEPS TO REPRODUCE
1. Attempt to use kdialog with the `--geometry` argument.
2. See that it doesn't affect anything.

SOFTWARE/OS VERSIONS
Linux/KDE Plasma: Fedora Kinoite 40
(available in About System)
KDE Plasma Version: 6.0.4
KDE Frameworks Version: 6.1.0
Qt Version: 6.7.0

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

[kmymoney] [Bug 486876] Show balance button on Ledger view is negative

2024-05-11 Thread Mark Penner
https://bugs.kde.org/show_bug.cgi?id=486876

Mark Penner  changed:

   What|Removed |Added

 CC||mrpen...@mailbox.org

--- Comment #3 from Mark Penner  ---
Not sure if this is useful to compare, but Gnucash has three settings for which
accounts to reverse the balance on: Income & Expense, Credit accounts, None.
https://gnucash.org/docs/v5/C/gnucash-manual/set-prefs.html#prefs-accounts
I find I can get used to any of methods. (I suppose the traditional way would
be to use all positive numbers and mark them credit or debit, but that's not
very beginner friendly)

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

[plasmashell] [Bug 486768] [git master] - Open app in Icon Only Task manager use more space than closed app.

2024-05-11 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=486768

Nate Graham  changed:

   What|Removed |Added

   Keywords||regression
 CC||n...@kde.org

--- Comment #1 from Nate Graham  ---
Can reproduce with certain amounts of space for the task manager widget.
Introduced with
https://invent.kde.org/plasma/plasma-desktop/-/merge_requests/2239.

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

[kwin] [Bug 486834] The `desktop` property of a window always returns `null` under wayland

2024-05-11 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=486834

gr...@chilon.net changed:

   What|Removed |Added

 Resolution|--- |WORKSFORME
 Status|REPORTED|RESOLVED

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

[kwin] [Bug 486834] The `desktop` property of a window always returns `null` under wayland

2024-05-11 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=486834

--- Comment #1 from gr...@chilon.net ---
Used the `desktops` property instead which works for my script so closing this

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

[kwin] [Bug 486831] workspace.currentDesktop doesn't work under wayland

2024-05-11 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=486831

gr...@chilon.net changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
 Resolution|--- |WORKSFORME

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

[krdc] [Bug 486644] Unable to log in with the credentials provided.

2024-05-11 Thread Matt Gibbs
https://bugs.kde.org/show_bug.cgi?id=486644

Matt Gibbs  changed:

   What|Removed |Added

 CC||kde-m...@mattgibbs.us

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

[digikam] [Bug 486878] Wrong date when downloading videos from Canon EOS R7

2024-05-11 Thread Geoffrey
https://bugs.kde.org/show_bug.cgi?id=486878

--- Comment #4 from Geoffrey  ---
(In reply to Maik Qualmann from comment #3)
> Git commit 24c0ed017b776f5f7e96c5e168ff088e1ab76ba9 by Maik Qualmann.
> Committed on 11/05/2024 at 11:28.
> Pushed by mqualmann into branch 'master'.
> 
> disable date/time reading with FFmpeg parser
> We now only use ExifTool. This also has the advantage that
> ExifTool can also read the set time zone for many videos.
> We will see if this behavior causes fewer problems in
> getting the correct video time.
> FIXED-IN: 8.4.0
> 
> M  +1-1NEWS
> M  +14   -13   core/libs/metadataengine/dmetadata/dmetadata_video.cpp
> 
> https://invent.kde.org/graphics/digikam/-/commit/
> 24c0ed017b776f5f7e96c5e168ff088e1ab76ba9

Thanks for the quick fix. Is there any build I could use to test it?

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

[kwin] [Bug 478556] Sometimes the stacking order is out of sync with Xorg

2024-05-11 Thread S. Christian Collins
https://bugs.kde.org/show_bug.cgi?id=478556

S. Christian Collins  changed:

   What|Removed |Added

 CC||s_chriscoll...@hotmail.com

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

[kwin] [Bug 482987] With fractional scale, bottom edge of screen has pixels that are held to the color of previously opened windows after closing those windows

2024-05-11 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=482987

Bug Janitor Service  changed:

   What|Removed |Added

 Status|CONFIRMED   |ASSIGNED

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

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

[kwin] [Bug 483429] Screen freezes with Adaptive Sync enabled

2024-05-11 Thread Jack Greiner
https://bugs.kde.org/show_bug.cgi?id=483429

Jack Greiner  changed:

   What|Removed |Added

 CC||j...@emoss.org

--- Comment #1 from Jack Greiner  ---
This is also visible in Plasma 6.0.4, in Fedora 40.

SOFTWARE/OS VERSIONS

KDE Plasma Version: 6.0.4
KDE Frameworks Version: 6.1.0
Qt Version: 6.7.0
OS: Fedora KDE 40

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

[kdiff3] [Bug 486909] New: KDiff3 as git mergetool does not jump to first conflict position at startup

2024-05-11 Thread Dominik Kummer
https://bugs.kde.org/show_bug.cgi?id=486909

Bug ID: 486909
   Summary: KDiff3 as git mergetool does not jump to first
conflict position at startup
Classification: Applications
   Product: kdiff3
   Version: 1.11.0
  Platform: Arch Linux
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: application
  Assignee: reeves...@gmail.com
  Reporter: ad...@arkades.org
  Target Milestone: ---

I use KDiff3 as mergetool for git and I just realized that it does not jump
to the first conflict position, but to some random position at startup.

So it ruins the workflow completely because I always fear to miss
prior conflicts within a solving flow.

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

[kdeplasma-addons] [Bug 486908] New: Add refresh button instead of waiting for refresh interval

2024-05-11 Thread medin
https://bugs.kde.org/show_bug.cgi?id=486908

Bug ID: 486908
   Summary: Add refresh button instead of waiting for refresh
interval
Classification: Plasma
   Product: kdeplasma-addons
   Version: 6.0.4
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: wishlist
  Priority: NOR
 Component: Weather
  Assignee: plasma-b...@kde.org
  Reporter: med.medin.2...@gmail.com
  Target Milestone: ---

Sometimes when the system boots, it cannot have an immediate internet due to
new location with unregistered wifi access points or disconnected cable, so the
applet displays that question mark, and when you click on it you see an
information message about retrieving timeout.

Even if connection to internet is re-established, you should wait for that
update interval 30min to finish in order to get weather information. Also, the
weather config page doesn't have any means to do it.

It would be more intuitive to have a refresh button under that information
message to trigger a manual refresh when the user is sure to have regained
internet access instead of waiting.

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

[kmymoney] [Bug 486876] Show balance button on Ledger view is negative

2024-05-11 Thread jesse
https://bugs.kde.org/show_bug.cgi?id=486876

--- Comment #2 from jesse  ---
(In reply to Jack from comment #1)
> As far as I can tell, this is all by design. I also think it has been
> discussed in the past, but I can't find any references at the moment.  
> First, it is not reasonable to use absolute values for these charts, since
> any account can be above or below zero.  An asset account can be over-drawn,
> and a liability account can be over-paid.  What would the chart look like
> for an over-paid liability of over-drawn asset?
> 
> I think what you could be asking for is that liability accounts show the
> amount owed as positive instead of negative,  but I think you will find as
> many people who want it the way it is.  You can think of your net worth as
> your assets less liabilities (thinking of both as positive amounts, as you
> request) or you can think of net worth as the sum of positive assets plus
> negative liabilities.  I can't make any definitive statement, but I don't
> think this change is likely to happen.  However, I think it could be
> reasonable to change this into a wishlist to add a toggle to the
> configuration that asks the balance charts of liability accounts to be shown
> "upside down."  (This could conceivably be done with or without actually
> flipping the sign of the values.)
> 
> In any case, I'll look through the handbook and see if I can improve the
> discussion to make this issue more obvious.  We can also think about adding
> a tool or note to balance charts for liability accounts pointing out that
> the liability, or amount you owe, is shown as a negative number.

Thanks Jack. 
Yes, you are correct about absolute values not being valid here. 

I figured there may be people, and as you said, maybe equal number of people
that like it the way it is. 

If that is the case, no worries. I agree with you on the two ways to look at
same situation. 

I also agree that updating the handbook or adding a tool tip would be nice. I
know that in the normal reports, there is a checkbox to ask whether we want to
see the expenses charted as negative numbers. Perhaps something similar to that
could be added.  Personally, I like all numbers to be charted as positive
values. That is just my preference. 

I can live with the current set up though. I know the new ledger is a huge
focus right now and this was more meant as a back burner item  for when there
is more time to reflect. 

You are correct, maybe it is more of a wish list item. I would be cool with
that. 

Thanks again!

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

[systemsettings] [Bug 486907] Impossible to pick a screen color on X11

2024-05-11 Thread popov895
https://bugs.kde.org/show_bug.cgi?id=486907

popov895  changed:

   What|Removed |Added

 CC||popov...@ukr.net

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

[systemsettings] [Bug 486907] New: Impossible to pick a screen color on X11

2024-05-11 Thread popov895
https://bugs.kde.org/show_bug.cgi?id=486907

Bug ID: 486907
   Summary: Impossible to pick a screen color on X11
Classification: Applications
   Product: systemsettings
   Version: 6.0.4
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: kcm_colors
  Assignee: plasma-b...@kde.org
  Reporter: popov...@ukr.net
CC: noaha...@gmail.com, tantalising...@gmail.com,
uhh...@gmail.com
  Target Milestone: ---

SUMMARY

On X11, it's not possible to pick a screen color in the Colors KCM. Please,
bring back the normal KColorChooser dialog instead of this useless QML popup.

SOFTWARE/OS VERSIONS

Operating System: openSUSE Tumbleweed 20240509
KDE Plasma Version: 6.0.4
KDE Frameworks Version: 6.1.0
Qt Version: 6.7.0
Graphics Platform: X11

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

[dolphin] [Bug 486906] New: Dolphin tries to move files to trash if no space is left

2024-05-11 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=486906

Bug ID: 486906
   Summary: Dolphin tries to move files to trash if no space is
left
Classification: Applications
   Product: dolphin
   Version: 23.08.5
  Platform: Manjaro
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: dolphin-bugs-n...@kde.org
  Reporter: jakob...@gmx.de
CC: kfm-de...@kde.org
  Target Milestone: ---

When Dolphin moves a file to the trash, 2 things are happening:
1. The file itself is moved to ~/.local/share/Trash/files
2. A .trashinfo file is created under ~/.local/share/Trash/info, which hols
information about the trashed file

If you try to move a file to the trash while no space is left, Dolphin will
move the file correctyl to ~/.local/share/Trash/files. As no space is left, the
.trashinfo file can't be created however. When you visit the Trash, the files
don't apper there, as the .trashinfo file is missing. The only way to delete
files at this point (what you should do to free up some space) is knowing  in
which directory the files were moved and deleting them there.

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

[Craft] [Bug 486905] Qt6 Webengine crash (ICU related?)

2024-05-11 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=486905

Bug Janitor Service  changed:

   What|Removed |Added

   Severity|normal  |crash

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

[k3b] [Bug 486818] Windows-centric filename patterns

2024-05-11 Thread Henry Pfeil
https://bugs.kde.org/show_bug.cgi?id=486818

Henry Pfeil  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
 Resolution|--- |NOT A BUG

--- Comment #2 from Henry Pfeil  ---
I looked at the relevant code. This problem lies with the CDDB database. It
appears that the db is sullied by children misusing Windows submissions: full
of spaces, apostrophes, parentheses, semicolons, commas, mixed case, different
languages and all. This would be a monster task to impose standards-compliancy
upon the existing entries, not so much for new entries after the screens are in
place. A few sed and tr statements in the get-cddb functions would fix it, but
violations of file-naming standards is in cddb.org, not K3b. Since it is
relatively easy for me to fix the mess in post-processing, this is not a bug.
Who knows who enforces international file-naming standards. Me, I'm more
focused upon 'works only in Windows' webbage, making folks aware of
https://validator.w3.org and http://www.anybrowser.org/campaign when I can no
longer log in to pay my bills because some moron hired a code jockey who is
capable only of manipulating a Windows html-design gooey.

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

[digikam] [Bug 460991] Determine thumbnail image in group by image type.

2024-05-11 Thread baloe
https://bugs.kde.org/show_bug.cgi?id=460991

--- Comment #6 from baloe  ---
Remark:
Indeed, manual grouping allows one to invoke the order. One has to to ungroup,
before dragging the bottom image into the top image.
However, any subsequent "Group by filename" will destroy the tedious work of
putting grouped files in their manual order.

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

[Craft] [Bug 486905] New: Qt6 Webengine crash (ICU related?)

2024-05-11 Thread Thomas Friedrichsmeier
https://bugs.kde.org/show_bug.cgi?id=486905

Bug ID: 486905
   Summary: Qt6 Webengine crash (ICU related?)
Classification: Developer tools
   Product: Craft
   Version: unspecified
  Platform: Microsoft Windows
OS: Microsoft Windows
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: Blueprints
  Assignee: vonr...@kde.org
  Reporter: thomas.friedrichsme...@kdemail.net
CC: kde-wind...@kde.org
  Target Milestone: ---

Trying to craft Qt6 version of RKWard on Windows, but getting a crash / exit as
soon as a QWebEnginePage is created (no crash as long as this is avoided).

Very shortly before the crash, qt logs:
> Could not find any platform plugin

debug.log inside CraftRoot\bin gets this:
> [0511/134609.176:ERROR:icu_util.cc(244)] Invalid file descriptor to ICU data 
> received.

ProcMon shows a failed read attempt to CraftRoot\resources\icudtl.dat (it does
not exist), right before logging, and calling WerFault.exe .

Unfortunately, my debugging skills on Windows are not terribly developed. Any
ideas on how to proceed.

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

[kwin] [Bug 486900] Low FPS/laggy rendering of floating panel adjustment when switching virtual desktops

2024-05-11 Thread Liz Lee
https://bugs.kde.org/show_bug.cgi?id=486900

--- Comment #2 from Liz Lee  ---
actually i just recognized that the laggy rendering occurs also when i move a
window towards the floating panel. (i can't imagine why the floating panel is
expanding to the edges/borders at all when i do not maximize a window, but
that's not the problem here).

in this case the lagging only seems to occur when the panel is expanding (or at
least it is not as obvious when it is retracting in this case).

the rendereing issues also occur not only on the beforementioned desktop pc
with a radeon r9 380, but also on my laptop that runs an AMD Ryzen 6600HS with
an APU (OS and Plasma versions are the same though).

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

[apper] [Bug 384165] Plasma5 Crash after Updating System with Update Plugin

2024-05-11 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=384165

jy6x2b32p...@yahoo.com changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
 CC||jy6x2b32p...@yahoo.com
 Resolution|--- |FIXED

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

[plasmashell] [Bug 486904] Logout / Reboot / Shutdown only happen with ca. 5-6s latency after clicking button in application launcher/logout screen

2024-05-11 Thread Liz Lee
https://bugs.kde.org/show_bug.cgi?id=486904

--- Comment #1 from Liz Lee  ---
After i did some research, i found some users reporting that the issues might
be caused by kdewallet.
Since i already had disabled kdewallet a long time ago, i thought maybe i
should give it a try nonetheless and activate and subsequently deactivate it.
guess what? the logout / reboot / shutdown buttons suddenly STOPPED WORKING AT
ALL.

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

[dolphin] [Bug 475152] Automatic update of ksycoca5 cache file sometimes breaks file association

2024-05-11 Thread Antonio Rojas
https://bugs.kde.org/show_bug.cgi?id=475152

--- Comment #6 from Antonio Rojas  ---
(In reply to logistic-bot from comment #3)
> I am experiencing a similar issue, not sure if it has the same cause.
> 
> - When opening a file using dolphin, no file association is used, and the
> "open with" window opens every time.
> - The "open with" window shows no applications (see attached screenshot).
> - Manually specifiying a command in the "open with" window opens the file
> with the specified program, however no association is saved when ticking the
> "Remember application association" box.

That is expected behavior if you're not using a DE, and not related to this
bug.

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

[kmymoney] [Bug 486876] Show balance button on Ledger view is negative

2024-05-11 Thread Jack
https://bugs.kde.org/show_bug.cgi?id=486876

Jack  changed:

   What|Removed |Added

 CC||ostroffjh@users.sourceforge
   ||.net

--- Comment #1 from Jack  ---
As far as I can tell, this is all by design. I also think it has been discussed
in the past, but I can't find any references at the moment.  
First, it is not reasonable to use absolute values for these charts, since any
account can be above or below zero.  An asset account can be over-drawn, and a
liability account can be over-paid.  What would the chart look like for an
over-paid liability of over-drawn asset?

I think what you could be asking for is that liability accounts show the amount
owed as positive instead of negative,  but I think you will find as many people
who want it the way it is.  You can think of your net worth as your assets less
liabilities (thinking of both as positive amounts, as you request) or you can
think of net worth as the sum of positive assets plus negative liabilities.  I
can't make any definitive statement, but I don't think this change is likely to
happen.  However, I think it could be reasonable to change this into a wishlist
to add a toggle to the configuration that asks the balance charts of liability
accounts to be shown "upside down."  (This could conceivably be done with or
without actually flipping the sign of the values.)

In any case, I'll look through the handbook and see if I can improve the
discussion to make this issue more obvious.  We can also think about adding a
tool or note to balance charts for liability accounts pointing out that the
liability, or amount you owe, is shown as a negative number.

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

[digikam] [Bug 460991] Determine thumbnail image in group by image type.

2024-05-11 Thread baloe
https://bugs.kde.org/show_bug.cgi?id=460991

--- Comment #5 from baloe  ---
(In reply to Maik Qualmann from comment #4)
> If you do grouping by filename, the JPEG will always be on top as it
> certainly has the smaller file size over the RAW. There is no stacking order
> in the grouping, there is only one image that is on top and is displayed.
> 
> Maik

As I wrote above, I do have plenty of JPEG files that are (slightly) larger
than their accompanying NEF raw files.
I begged my computer to change its mind, but the computer says no, sorry.

The NEF files are 14bit Nikon D800 losslessly compressed raw files.
The JPEGs are 8bit, from Capture One at 100% quality setting, generated many
years ago.

Those JPEGs are then around the same size as the NEF file, mostly a bit
smaller, but plenty are a bit larger than the NEF files.
Maybe Nikon has a crazy good lossless compression, maybe they are lying about
their compression being lossless, maybe Capture One had a bug in their
compression algorithm, I don't know, and it's not the topic here either.

If I could, I would simply regenerate those JPEGs at a smaller quality setting,
but I am no longer able to do so, because I don't have access to a Capture One
license any more since switching to Darktable.
Of course, I could go through the tedious process of recompressing JPEGs where
necessary to make them smaller than the NEF files, but that seems to be a bit
absurd to me. Besides, the files have been in two incremental backups for
years, replacing them now by smaller variants will still increase my backups
without any real need.

So, being able to tell Digikam to prefer any other file format over NEF when
choosing the top of the stack in a group would solve my problem, and there is a
chance I am not the only one.

Bastian

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

[plasmashell] [Bug 486904] New: Logout / Reboot / Shutdown only happen with ca. 5-6s latency after clicking button in application launcher/logout screen

2024-05-11 Thread Liz Lee
https://bugs.kde.org/show_bug.cgi?id=486904

Bug ID: 486904
   Summary: Logout / Reboot / Shutdown only happen with ca. 5-6s
latency after clicking button in application
launcher/logout screen
Classification: Plasma
   Product: plasmashell
   Version: 6.0.4
  Platform: Fedora RPMs
OS: Linux
Status: REPORTED
  Severity: major
  Priority: NOR
 Component: Lock/logout
  Assignee: plasma-b...@kde.org
  Reporter: waynejw...@outlook.com
  Target Milestone: 1.0

Created attachment 169390
  --> https://bugs.kde.org/attachment.cgi?id=169390=edit
Relevant Times

STEPS TO REPRODUCE
1. Click Logout / Reboot / Shutdown button in application launcher or logout
screen.

OBSERVED RESULT
Desired action only happens after a waiting time of ca. 5 to 6 seconds.

EXPECTED RESULT
Desired action should be started immediately.

SOFTWARE/OS VERSIONS
Linux/KDE Plasma: Fedora 40, Kernel 6.8.9-300.fc40.x86_64 
(available in About System)
KDE Plasma Version: 6.0.4
KDE Frameworks Version: 6.1.0
Qt Version: 6.7.0

ADDITIONAL INFORMATION
"shutdown +0" command via terminal executes immediately without any problems. I
therefore suppose it has to do with Plasma.

I have attached a logfile. Please notice the 5 second period between the first
and the second line, i.e. between myself klicking the button and the OS
executing any actions.

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

[akregator] [Bug 486903] New: Close to system tray not working after program start

2024-05-11 Thread Ricardo J. Barberis
https://bugs.kde.org/show_bug.cgi?id=486903

Bug ID: 486903
   Summary: Close to system tray not working after program start
Classification: Applications
   Product: akregator
   Version: 6.0.2
  Platform: Fedora RPMs
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: kdepim-b...@kde.org
  Reporter: rica...@palmtx.com.ar
  Target Milestone: ---

SUMMARY

Akregator with "Show system tray icon" enabled fails to hide to the system tray
when clicking on its icon, and afterwards fails to show up when clicking it
again, you need to run akregator e.g. from krunner for it to show up.

STEPS TO REPRODUCE
1. Open Akregator previously configured with "Show system tray icon" enabled
2. Click on its system tray icon to hide it, nothing happens
3. Close the window with e.g. F4, it goes to the system tray
4. Click on its system tray icon to show it, nothing happens

OBSERVED RESULT

Akregator fails to hide or show when clicking on its system tray icon

EXPECTED RESULT

Akregator should hide or show when clicking on its system tray icon

SOFTWARE/OS VERSIONS

Operating System: Fedora Linux 40
KDE Plasma Version: 6.0.4
KDE Frameworks Version: 6.1.0
Qt Version: 6.7.0

ADDITIONAL INFORMATION

Kernel Version: 6.8.9-300.fc40.x86_64 (64-bit)
Graphics Platform: X11

This sound suspiciously similar to https://bugs.kde.org/show_bug.cgi?id=482316
Whichi was fixed in
https://invent.kde.org/network/konversation/-/commit/1d554cb2c29e57bfd58b9aed7643dcb60fbf8659

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

[kwin] [Bug 475077] Show non-linear virtual desktop arrangements again

2024-05-11 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=475077

raind...@proton.me changed:

   What|Removed |Added

 CC||raind...@proton.me

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

[kid3] [Bug 486902] New: Feature: Stripping excess tag padding, setting for maximum padding size

2024-05-11 Thread RoboDude
https://bugs.kde.org/show_bug.cgi?id=486902

Bug ID: 486902
   Summary: Feature: Stripping excess tag padding, setting for
maximum padding size
Classification: Applications
   Product: kid3
   Version: 3.9.x
  Platform: Debian stable
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: uflei...@users.sourceforge.net
  Reporter: ehkd3...@nyfb.com
  Target Milestone: ---

SUMMARY
I was disappointed to find that there seems to be no way to rewrite files (in
this particular case m4a files) to limit/remove excess tag padding space.

I removed very large cover art images from a group of files, and found that the
files were still the same size, wasting quite a bit of space.

The amount of space to leave should be configurable, and perhaps a reasonable
default for this option would be 1k of padding space?  If changes to tags/cover
art leaves padding in excess of this, the file should be re-written to remove
that wasted space.

STEPS TO REPRODUCE
1. Load m4a files with embedded cover art images
2. Remove the images
3. Note that the file size is has not shrunk.

OBSERVED RESULT
Files are same size

EXPECTED RESULT
Excess padding space should be removed.

SOFTWARE/OS VERSIONS
Linux/KDE Plasma: 3.9.3

ADDITIONAL INFORMATION
An example of a tool that does this (although only for mp3 files) is eyeD3
--max-padding=1024

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

[plasmashell] [Bug 486901] Make Panel Configuration width static

2024-05-11 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=486901

--- Comment #1 from filip.kend...@gmail.com ---
Created attachment 169389
  --> https://bugs.kde.org/attachment.cgi?id=169389=edit
after

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

[plasmashell] [Bug 486901] New: Make Panel Configuration width static

2024-05-11 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=486901

Bug ID: 486901
   Summary: Make Panel Configuration width static
Classification: Plasma
   Product: plasmashell
   Version: 6.0.4
  Platform: Arch Linux
OS: Linux
Status: REPORTED
  Severity: wishlist
  Priority: NOR
 Component: Panel
  Assignee: plasma-b...@kde.org
  Reporter: filip.kend...@gmail.com
CC: niccolo.venera...@gmail.com
  Target Milestone: 1.0

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

SUMMARY
When user is changing Visibility setting in the Panel Configuration, the width
of the panel changes based on the option selected.

My suggestion is to make the width static (wide enough for the widest option
which is "Windows Go Below") and keep it for all options so it doesn't jump
around. This behavior looks much nicer in my opinion.

I'm not sure how this would behave on smaller screens, hopefully would be good.

Thank you.

STEPS TO REPRODUCE
1. Right click on panel and select "Show Panel Configuration
2. Change values in the Visibility dropdown menu

OBSERVED RESULT
Panel width is changing based on the option selected

EXPECTED RESULT
Panel width is static

SOFTWARE/OS VERSIONS
Operating System: Arch Linux 
KDE Plasma Version: 6.0.80
KDE Frameworks Version: 6.1.0
Qt Version: 6.7.0
Kernel Version: 6.8.9-arch1-1 (64-bit)
Graphics Platform: Wayland
Processors: 4 × Intel® Core™ i5-6600K CPU @ 3.50GHz
Memory: 7.7 GiB of RAM
Graphics Processor: NVIDIA GeForce GTX 970/PCIe/SSE2

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

[plasmashell] [Bug 486768] [git master] - Open app in Icon Only Task manager use more space than closed app.

2024-05-11 Thread Jan Rathmann
https://bugs.kde.org/show_bug.cgi?id=486768

Jan Rathmann  changed:

   What|Removed |Added

 Status|REPORTED|CONFIRMED
 Ever confirmed|0   |1

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

[plasmashell] [Bug 486768] [git master] - Open app in Icon Only Task manager use more space than closed app.

2024-05-11 Thread Jan Rathmann
https://bugs.kde.org/show_bug.cgi?id=486768

Jan Rathmann  changed:

   What|Removed |Added

 CC||jan.rathm...@gmx.de

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

[plasmashell] [Bug 446654] Feature Request: mirror a panel on all monitors

2024-05-11 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=446654

severin.hama...@yahoo.de changed:

   What|Removed |Added

 CC||severin.hama...@yahoo.de

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

[kwin] [Bug 486900] Low FPS/laggy rendering of floating panel adjustment when switching virtual desktops

2024-05-11 Thread Liz Lee
https://bugs.kde.org/show_bug.cgi?id=486900

--- Comment #1 from Liz Lee  ---
To prevent any misunderstandings: only the animiation of the panel is laggy.
the desktop-switching animation itself is unaffected and works fine.

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

[kwin] [Bug 486900] New: Low FPS/laggy rendering of floating panel adjustment when switching virtual desktops

2024-05-11 Thread Liz Lee
https://bugs.kde.org/show_bug.cgi?id=486900

Bug ID: 486900
   Summary: Low FPS/laggy rendering of floating panel adjustment
when switching virtual desktops
Classification: Plasma
   Product: kwin
   Version: 6.0.4
  Platform: Fedora RPMs
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: effects-various
  Assignee: kwin-bugs-n...@kde.org
  Reporter: waynejw...@outlook.com
  Target Milestone: ---

STEPS TO REPRODUCE
1. Have a floating panel.
2. Have a maximized window on virtual desktop #1.
2. Do not have a maximized windows on virtual desktop #2.
3. Switch between the virtual desktops.

OBSERVED RESULT
The animation of the adjustment of the floating panel (to either expand to the
edges/borders or retract from them) is  rendered with very low FPS which looks
laggy.

EXPECTED RESULT
A smooth animation.

SOFTWARE/OS VERSIONS
Linux/KDE Plasma: Fedora 40 Kernel 6.8.9-300.fc40.x86_64, wayland 
(available in About System)
KDE Plasma Version: 6.0.4
KDE Frameworks Version: 6.1.0
Qt Version: 6.7.0

GRAPHICS INFO
Compositing
===
Compositing is active
Compositing Type: OpenGL
OpenGL vendor string: AMD
OpenGL renderer string: AMD Radeon R9 380 Series (radeonsi, tonga, LLVM 18.1.1,
DRM 3.57, 6.8.9-300.fc40.x86_64)
OpenGL version string: 4.6 (Core Profile) Mesa 24.0.6
OpenGL platform interface: EGL
OpenGL shading language version string: 4.60
Driver: Unknown
GPU class: Unknown
OpenGL version: 4.6
GLSL version: 4.60
Mesa version: 24.0.6
X server version: 1.23.2
Linux kernel version: 6.8.9
Direct rendering: Requires strict binding: no
Virtual Machine:  no
OpenGL 2 Shaders are used

ADDITIONAL INFORMATION
It does not matter if the animation for switching desktops is set to "Slide",
"Fade Desktop" or deactivated at all.

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

[Falkon] [Bug 486899] New: Falkon doesn't open locally stored pages properly

2024-05-11 Thread Noble Hays
https://bugs.kde.org/show_bug.cgi?id=486899

Bug ID: 486899
   Summary: Falkon doesn't open locally stored pages properly
Classification: Applications
   Product: Falkon
   Version: 24.02.2
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: unassigned-b...@kde.org
  Reporter: noble.h...@gmail.com
  Target Milestone: ---

***
If you're not sure this is actually a bug, instead post about it at
https://discuss.kde.org

If you're reporting a crash, attach a backtrace with debug symbols; see
https://community.kde.org/Guidelines_and_HOWTOs/Debugging/How_to_create_useful_crash_reports
***

SUMMARY


STEPS TO REPRODUCE
1. Create or Mirror a web page locally
2. Attempt to open the file in falkon

OBSERVED RESULT
the file://path/file.html page does not load

EXPECTED RESULT
page opens

SOFTWARE/OS VERSIONS
Windows: 
macOS: 
Linux/KDE Plasma: Kubuntu 22.04
(available in About System)
KDE Plasma Version: Plasma 5.27.11
KDE Frameworks Version: 5.104
Qt Version: 5.15.3

ADDITIONAL INFORMATION

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

[digikam] [Bug 460991] Determine thumbnail image in group by image type.

2024-05-11 Thread Maik Qualmann
https://bugs.kde.org/show_bug.cgi?id=460991

--- Comment #4 from Maik Qualmann  ---
If you do grouping by filename, the JPEG will always be on top as it certainly
has the smaller file size over the RAW. There is no stacking order in the
grouping, there is only one image that is on top and is displayed.

Maik

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

[kwin] [Bug 486898] New: After updating to Plasma 6 the squash and magic lamp minimizing-effects are rendered simultaneously

2024-05-11 Thread Liz Lee
https://bugs.kde.org/show_bug.cgi?id=486898

Bug ID: 486898
   Summary: After updating to Plasma 6 the squash and magic lamp
minimizing-effects are rendered simultaneously
Classification: Plasma
   Product: kwin
   Version: 6.0.4
  Platform: Fedora RPMs
OS: Linux
Status: REPORTED
  Severity: minor
  Priority: NOR
 Component: effects-window-management
  Assignee: kwin-bugs-n...@kde.org
  Reporter: waynejw...@outlook.com
  Target Milestone: ---

STEPS TO REPRODUCE
1. Select the magic lamp effect for minimizing windows to the task manager in
plasma 5.27.11
2. Update to plasma 6.0.4

OBSERVED RESULT
Magic lamp effect AND squash effect are rendered simultaneously when minimizing
windows, leading to a glitchy look.

EXPECTED RESULT
Only the magic lamp effect should be rendered.

SOFTWARE/OS VERSIONS
Linux/KDE Plasma: Fedora 40, wayland
(available in About System)
KDE Plasma Version: 6.0.4
KDE Frameworks Version: 6.1.0
Qt Version: 6.7.0

ADDITIONAL INFORMATION
Once the magic lamp effect or the squash effect has been chosen in the system
settings after the update to Plasma 6.0.4 everything works normally, the issues
disappears.
Though it can be remediated very easily, it still doesn't make a good first
impression.

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

[kwin] [Bug 482361] Window placement and positioning are sometimes wrong when waking up from sleep

2024-05-11 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=482361

breakingsp...@gmail.com changed:

   What|Removed |Added

 CC||breakingsp...@gmail.com

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

[systemsettings] [Bug 486897] New: Not able to create shortcuts

2024-05-11 Thread DeMus
https://bugs.kde.org/show_bug.cgi?id=486897

Bug ID: 486897
   Summary: Not able to create shortcuts
Classification: Applications
   Product: systemsettings
   Version: 6.0.4
  Platform: Fedora RPMs
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: kcm_keyboard
  Assignee: plasma-b...@kde.org
  Reporter: jan.muss...@gmail.com
CC: butir...@gmail.com, natalie_clar...@yahoo.de
  Target Milestone: ---

Created attachment 169387
  --> https://bugs.kde.org/attachment.cgi?id=169387=edit
Error message

***
If you're not sure this is actually a bug, instead post about it at
https://discuss.kde.org
I did, but this did not result in a working answer.

If you're reporting a crash, attach a backtrace with debug symbols; see
https://community.kde.org/Guidelines_and_HOWTOs/Debugging/How_to_create_useful_crash_reports
***

SUMMARY


STEPS TO REPRODUCE
1. In system-settings select Keyboard - Shortcuts, button Add new and then
select Command or Script
2. Select the item you want to have a shortcut made for
3. When clicking Add the input window disappears and on top of the window an
error message in red appears:
Error while communicating with the global shortcuts service

OBSERVED RESULT
No shortcut added

EXPECTED RESULT
Having a new shortcut

SOFTWARE/OS VERSIONS

Linux/KDE Plasma: 6.0.4
(available in About System)
KDE Plasma Version: 6.0.4
KDE Frameworks Version: 6.1.0
Qt Version: 6.7.0

ADDITIONAL INFORMATION
This happened both in Fedora 40 KDE spin as well as in Fedora 40 Kinoite.

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

[systemsettings] [Bug 478443] Maximized state not remembered across launches

2024-05-11 Thread Liz Lee
https://bugs.kde.org/show_bug.cgi?id=478443

Liz Lee  changed:

   What|Removed |Added

   Platform|Other   |Fedora RPMs

--- Comment #1 from Liz Lee  ---
Can confirm
Fedora 40, Plasma 6.0.4, wayland

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

[digikam] [Bug 467766] MySQL foreign key error on a zero image id

2024-05-11 Thread Maik Qualmann
https://bugs.kde.org/show_bug.cgi?id=467766

--- Comment #79 from Maik Qualmann  ---
Git commit 52cd672878919ed58cd28dbfa1cdf9316dc25f21 by Maik Qualmann.
Committed on 11/05/2024 at 17:07.
Pushed by mqualmann into branch 'master'.

check for a valid index

M  +36   -18   core/app/items/views/digikamitemview.cpp

https://invent.kde.org/graphics/digikam/-/commit/52cd672878919ed58cd28dbfa1cdf9316dc25f21

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

[dolphin] [Bug 475152] Automatic update of ksycoca5 cache file sometimes breaks file association

2024-05-11 Thread logistic-bot
https://bugs.kde.org/show_bug.cgi?id=475152

--- Comment #5 from logistic-bot  ---
Created attachment 169386
  --> https://bugs.kde.org/attachment.cgi?id=169386=edit
Empty "Select the program to open this file" box

Whoops forgot to attach the screenshot

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

[dolphin] [Bug 475152] Automatic update of ksycoca5 cache file sometimes breaks file association

2024-05-11 Thread logistic-bot
https://bugs.kde.org/show_bug.cgi?id=475152

--- Comment #4 from logistic-bot  ---
Update: I got it to work with help from this thread:
https://bbs.archlinux.org/viewtopic.php?pid=2167377

Here are the steps that worked:
- Install the "archlinux-xdg-menu" package
sudo pacman -S archlinux-xdg-menu
- Update system menus:
update-menus
- Rebuild ksycoca:
XDG_MENU_PREFIX=arch- kbuildsycoca6
- It works!

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

[KPipeWire] [Bug 476866] KPipeWire turns on the discrete GPU on a multi-GPU laptop on startup, slowing it down and using extra energy

2024-05-11 Thread Noah Davis
https://bugs.kde.org/show_bug.cgi?id=476866

Noah Davis  changed:

   What|Removed |Added

 CC||noaha...@gmail.com
Summary|Spectacle turns on the  |KPipeWire turns on the
   |discrete GPU on a multi-GPU |discrete GPU on a multi-GPU
   |laptop on startup, slowing  |laptop on startup, slowing
   |it down and using extra |it down and using extra
   |energy  |energy

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

[KPipeWire] [Bug 476866] Spectacle turns on the discrete GPU on a multi-GPU laptop on startup, slowing it down and using extra energy

2024-05-11 Thread Noah Davis
https://bugs.kde.org/show_bug.cgi?id=476866

Noah Davis  changed:

   What|Removed |Added

Version|24.01.75|unspecified
  Component|General |general
 CC||aleix...@kde.org
Product|Spectacle   |KPipeWire
   Assignee|noaha...@gmail.com  |plasma-b...@kde.org

--- Comment #14 from Noah Davis  ---
Let's move it to KPipeWire

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

[dolphin] [Bug 475152] Automatic update of ksycoca5 cache file sometimes breaks file association

2024-05-11 Thread logistic-bot
https://bugs.kde.org/show_bug.cgi?id=475152

logistic-bot  changed:

   What|Removed |Added

 CC||khais.colin+kdebugs@gmail.c
   ||om
Version|22.12.3 |24.02.2

--- Comment #3 from logistic-bot  ---
I am experiencing a similar issue, not sure if it has the same cause.

- When opening a file using dolphin, no file association is used, and the "open
with" window opens every time.
- The "open with" window shows no applications (see attached screenshot).
- Manually specifiying a command in the "open with" window opens the file with
the specified program, however no association is saved when ticking the
"Remember application association" box.

This happens even as a non-root user (my primary use case).

Running "kbuildsycoca5" or "kbuildsycoca6", both as root and non-root does not
seem to solve the issue, even temporarily.

System information:
dolphin 24.02.2
kbuildsycoca5 5.115.0
kbuildsycoca6 6.1.0
Arch Linux 6.8.5-zen1-1-zen

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

[kde] [Bug 486892] When I open my laptop and log in, the width of the panel gets longer.

2024-05-11 Thread Ertugrul Uyar
https://bugs.kde.org/show_bug.cgi?id=486892

Ertugrul Uyar  changed:

   What|Removed |Added

Summary|Panel getting out of it's   |When I open my laptop and
   |length when I logged in.|log in, the width of the
   ||panel gets longer.

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

[systemsettings] [Bug 486895] Command Bar opens behind some KCMs

2024-05-11 Thread Tore Havn
https://bugs.kde.org/show_bug.cgi?id=486895

--- Comment #4 from Tore Havn  ---
Created attachment 169385
  --> https://bugs.kde.org/attachment.cgi?id=169385=edit
Command bar opens in front of KDE Connect settings

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

[systemsettings] [Bug 486895] Command Bar opens behind some KCMs

2024-05-11 Thread Tore Havn
https://bugs.kde.org/show_bug.cgi?id=486895

--- Comment #3 from Tore Havn  ---
Created attachment 169384
  --> https://bugs.kde.org/attachment.cgi?id=169384=edit
Command bar opens up behind Sound settings

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

[dolphin] [Bug 486896] Browsing SMB causes kioslave5 to throw errors in libnvidia-tls.550.78

2024-05-11 Thread Hugh Phoenix-Hulme
https://bugs.kde.org/show_bug.cgi?id=486896

Hugh Phoenix-Hulme  changed:

   What|Removed |Added

 CC||h...@webnet.org.uk
   Platform|Other   |Ubuntu

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

[systemsettings] [Bug 486895] Command Bar opens behind some KCMs

2024-05-11 Thread Tore Havn
https://bugs.kde.org/show_bug.cgi?id=486895

--- Comment #2 from Tore Havn  ---
Created attachment 169383
  --> https://bugs.kde.org/attachment.cgi?id=169383=edit
Command bar opens in front of Keyboard settings

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

[dolphin] [Bug 486896] New: Browsing SMB causes kioslave5 to throw errors in libnvidia-tls.550.78

2024-05-11 Thread Hugh Phoenix-Hulme
https://bugs.kde.org/show_bug.cgi?id=486896

Bug ID: 486896
   Summary: Browsing SMB causes kioslave5 to throw errors in
libnvidia-tls.550.78
Classification: Applications
   Product: dolphin
   Version: 23.08.5
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: dolphin-bugs-n...@kde.org
  Reporter: h...@webnet.org.uk
CC: kfm-de...@kde.org
  Target Milestone: ---

SUMMARY


STEPS TO REPRODUCE
1. Install nvidia driver 550.78
2. Open Dolphin
3. Browse to SMB

OBSERVED RESULT

The Dolphin tab displays the message "The process for the smb://a.b.c.d
protocol died unexpectedly."
Crash report appears in systray: "kioslave5 Closed Unexpectedly."
KDE Crash Handler reports this Developer Information:

Application: kioslave5 (kioslave5), signal: Segmentation fault

[KCrash Handler]
#4  0x7a932e25c618 in ?? () from
/lib/x86_64-linux-gnu/libnvidia-tls.so.550.78
#5  0x732e36312d465455 in ?? ()
#6  0x7a9331e3006f in __gconv_transform_internal_ascii
(step=0xec81481574d3d1, data=0x48f0e08348ca2918, inptrp=0x8948098be8e7,
inend=0x7ffc9caa2290 "@#\252\234\374\177", outbufstart=0x24b1e8e78948,
irreversible=0x89482723e8c7, do_flush=1401505809,
consume_incomplete=726164680) at ../iconv/skeleton.c:547
Backtrace stopped: previous frame inner to this frame (corrupt stack?)
[Inferior 1 (process 1552475) detached]


EXPECTED RESULT

None of the above.

SOFTWARE/OS VERSIONS
Linux/KDE Plasma:
(available in About System)
KDE Plasma Version: 5.27.11
KDE Frameworks Version: 5.115.0
Qt Version: 5.15.13

ADDITIONAL INFORMATION

libnvidia-tls.so is for Thread Local Storage. Renaming it to prevent it being
loaded solves the problem, but why is it being loaded?

This seems like a pretty terrible scenario. Some external component is causing
undesirable behaviour, but when that component is unavailable, everything
works. So literally anything has the potential to break kioslave5. Should
kioslave5 be ignoring exceptions while trying to load libraries at this point?
Is there a way to blacklist libraries so kioslave5 doesn't try to load them? (I
doubt I can get away with removing the thread local storage lib systemwide - I
could try it, but I don't expect it'll be pretty.)

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

[systemsettings] [Bug 486895] Command Bar opens behind some KCMs

2024-05-11 Thread Tore Havn
https://bugs.kde.org/show_bug.cgi?id=486895

--- Comment #1 from Tore Havn  ---
Created attachment 169382
  --> https://bugs.kde.org/attachment.cgi?id=169382=edit
Command bar opens up behind Mouse & Touchpad settings

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

[systemsettings] [Bug 486895] Command Bar opens behind some KCMs

2024-05-11 Thread Tore Havn
https://bugs.kde.org/show_bug.cgi?id=486895

Tore Havn  changed:

   What|Removed |Added

Summary|Command Bar opens behind|Command Bar opens behind
   |KCMs|some KCMs

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

[systemsettings] [Bug 486895] New: Command Bar opens behind KCMs

2024-05-11 Thread Tore Havn
https://bugs.kde.org/show_bug.cgi?id=486895

Bug ID: 486895
   Summary: Command Bar opens behind KCMs
Classification: Applications
   Product: systemsettings
   Version: 6.0.4
  Platform: Neon
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: plasma-b...@kde.org
  Reporter: v...@veqz.net
  Target Milestone: ---

Created attachment 169381
  --> https://bugs.kde.org/attachment.cgi?id=169381=edit
Command bar opens up behind Quick Settings

The command bar in System Settings opens up behind _some of_ the KCMs.

See attachments.

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

[valgrind] [Bug 377966] arm64 unhandled instruction dc zva

2024-05-11 Thread Paul Floyd
https://bugs.kde.org/show_bug.cgi?id=377966

Paul Floyd  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|REPORTED|RESOLVED

--- Comment #11 from Paul Floyd  ---
commit 8b6c36ecf14530d7f50f65697c2a039e3d410092 (HEAD -> master, origin/master,
origin/HEAD)
Author: Paul Floyd 
Date:   Sat May 11 18:10:03 2024 +0200

Bug 377966 - arm64 unhandled instruction dc zva

With contributions from
Louis Brunner https://github.com/LouisBrunner/valgrind-macos

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

[krunner] [Bug 486894] New: Windows runner does not prioritize exact matches for virtual desktops

2024-05-11 Thread Kishore Gopalakrishnan
https://bugs.kde.org/show_bug.cgi?id=486894

Bug ID: 486894
   Summary: Windows runner does not prioritize exact matches for
virtual desktops
Classification: Plasma
   Product: krunner
   Version: 6.0.4
  Platform: Arch Linux
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: windows
  Assignee: plasma-b...@kde.org
  Reporter: kishor...@gmail.com
CC: alexander.loh...@gmx.de, natalie_clar...@yahoo.de
  Target Milestone: ---

SUMMARY
I have 16 virtual desktops. When I type 'desktop 1' in krunner, the windows
runner shows desktops 16 through 10 as the top results, resulting in desktop 1
not being offered as a result at all

STEPS TO REPRODUCE
1. Have 16 virtual desktops
2. type 'desktop 1' in krunner

OBSERVED RESULT
Top results are:
Desktop 16
Desktop 15
Desktop 14
Desktop 13
Desktop 12
Desktop 11
Desktop 10

with Desktop 1 not being shown at all

EXPECTED RESULT
The top result should be Desktop 1, which is an exact match


SOFTWARE/OS VERSIONS
Operating System: Arch Linux 
KDE Plasma Version: 6.0.4
KDE Frameworks Version: 6.1.0
Qt Version: 6.7.0
Kernel Version: 6.6.30-1-lts (64-bit)
Graphics Platform: X11

ADDITIONAL INFORMATION

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

[kwin] [Bug 465283] Windows "Always on top" cover the app menu too

2024-05-11 Thread Henning
https://bugs.kde.org/show_bug.cgi?id=465283

Henning  changed:

   What|Removed |Added

 Status|CONFIRMED   |RESOLVED
 Resolution|--- |FIXED

--- Comment #4 from Henning  ---
Fixed in Plasma6

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

[kwin] [Bug 485425] Running a "custom" X window via Xwayland forces fullscreen repaints for the rest of the session all the time

2024-05-11 Thread fililip
https://bugs.kde.org/show_bug.cgi?id=485425

fililip  changed:

   What|Removed |Added

Summary|Running Steam on AMD+NVIDIA |Running a "custom" X window
   |forces fullscreen repaints  |via Xwayland forces
   |for the rest of the session |fullscreen repaints for the
   |all the time|rest of the session all the
   ||time

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

[dolphin] [Bug 481401] On a slow network location, Dolphin allows two "new folder" modals then crashes

2024-05-11 Thread Felix Ernst
https://bugs.kde.org/show_bug.cgi?id=481401

Felix Ernst  changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
  Latest Commit||https://invent.kde.org/syst
   ||em/dolphin/-/commit/742566e
   ||b69e6bf46e7abb74e9ce9293c4b
   ||3ed7e8
 Resolution|--- |FIXED

--- Comment #13 from Felix Ernst  ---
Git commit 742566eb69e6bf46e7abb74e9ce9293c4b3ed7e8 by Felix Ernst, on behalf
of Akseli Lahtinen.
Committed on 11/05/2024 at 15:59.
Pushed by felixernst into branch 'master'.

Check if namejob is already being run before opening new createDirectory dialog

This is a fix for a bug where in network views (or otherwise slow
systems), pressing `Ctrl+Shift+N` multiple times opens multiple popup
windows and thus causes a crash when any of the popups is interacted
with after closing the topmost one. The problem is not the crash with
popups themselves, but that we're opening multiple popups in the first
place.

In regular views this works fine, since the `nameJob` does not take
long time at all and only one popup opens, immediately blocking the
shortcut.

In network views, the `nameJob` seems to take a while to run, since it
is loading info from network. If user spams `Ctrl+Shift+N` shortcut in
frustration, it starts more `nameJob`s and eventually when those jobs
are done, it opens multiple popups.

This code checks that if we're already running a `namejob`, we're very
likely waiting for the `createDir` popup to appear, so we don't do
anything until there is no more `nameJob` running. 

I've tested that it works in both network and regular Dolphin views.

M  +1-1CMakeLists.txt
M  +8-2src/dolphinmainwindow.cpp

https://invent.kde.org/system/dolphin/-/commit/742566eb69e6bf46e7abb74e9ce9293c4b3ed7e8

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

[kwin] [Bug 485425] Running Steam on AMD+NVIDIA forces fullscreen repaints for the rest of the session all the time

2024-05-11 Thread fililip
https://bugs.kde.org/show_bug.cgi?id=485425

--- Comment #10 from fililip  ---
After further testing, this can also happen when any
"custom-border"/"custom-window" Xwayland app (such as FL Studio via Wine,
Steam, game/mod launchers via Wine, etc.) is launched.

This in turn forces full refresh rate whole-screen on all screens (unless VRR
requirements are met, see below). These full repaints are easy to visualize
with the Show Paint desktop effect in KWin.

I've also tried removing the nvidia driver again, this time to no avail - FL
Studio manages to trigger this behavior even on a single GPU (AMD) setup, so
thankfully it seems like it's not an NVIDIA bug after all. (The Steam window
itself for some reason manages to work fine on just AMD, but everything falls
apart if I launch a game with "custom" windows, like OMSI 2.)

However, this is probably intended behavior anyway (the minimum refresh rate
requirement for VRR is not enforced prior to launching these apps, see
https://bugs.kde.org/show_bug.cgi?id=483240, starting one of them "makes it
work"). I'll just stick to nested compositing, the Wine Wayland driver and
gamescope wherever I can - I'd like to retain full kernel LFC if possible.

The only real issue with these repaints is the relatively "high" CPU usage they
cause (compared to when they aren't present).

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

[frameworks-baloo] [Bug 473389] Kinoite: baloo makes Dolphin lag extremely

2024-05-11 Thread Henning
https://bugs.kde.org/show_bug.cgi?id=473389

--- Comment #2 from Henning  ---
https://discussion.fedoraproject.org/t/baloo-exclude-certain-directories-by-default/116813/1

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

[krita] [Bug 486893] Crashes when inserting keyframe columns when there's a transform mask.

2024-05-11 Thread wolthera
https://bugs.kde.org/show_bug.cgi?id=486893

--- Comment #2 from wolthera  ---
It does not happen with the old 5.2.2 appimage:

Krita

 Version: 5.2.2
 Hidpi: true

Qt

  Version (compiled): 5.15.7
  Version (loaded): 5.15.7

OS Information

  Build ABI: x86_64-little_endian-lp64
  Build CPU: x86_64
  CPU: x86_64
  Kernel Type: linux
  Kernel Version: 6.5.0-28-generic
  Pretty Productname: Ubuntu 23.10
  Product Type: ubuntu
  Product Version: 23.10
  Desktop: KDE
  Appimage build: Yes

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

[kde] [Bug 486892] Panel getting out of it's length when I logged in.

2024-05-11 Thread Ertugrul Uyar
https://bugs.kde.org/show_bug.cgi?id=486892

--- Comment #2 from Ertugrul Uyar  ---
Created attachment 169380
  --> https://bugs.kde.org/attachment.cgi?id=169380=edit
Panel issue's screenshot while it's happening.

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

[Tokodon] [Bug 486690] Font Settings Apply To Limited Elements

2024-05-11 Thread Joshua Goins
https://bugs.kde.org/show_bug.cgi?id=486690

Joshua Goins  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
 Resolution|--- |NOT A BUG

--- Comment #1 from Joshua Goins  ---
The bug with it not applying to the post is now fixed, but it not applying to
the other UI elements is intentional. If you want every piece of the UI to
change uniformly, use display scaling or changing the system font. The content
font is only if you wish to make the post content more readable/a different
font.

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

[kde] [Bug 486892] Panel getting out of it's length when I logged in.

2024-05-11 Thread Ertugrul Uyar
https://bugs.kde.org/show_bug.cgi?id=486892

--- Comment #1 from Ertugrul Uyar  ---
I wanted to add the issue's screenshot, to do this I logged out and logged in
then it's like gonna happen then it's turn the normal length. So I restart the
laptop and logged in, the issue happened and I took the screenshot. I added
this as a second attachment.

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

[Tokodon] [Bug 485651] No icons on bottom drawer buttons

2024-05-11 Thread Joshua Goins
https://bugs.kde.org/show_bug.cgi?id=485651

Joshua Goins  changed:

   What|Removed |Added

 Resolution|--- |UPSTREAM
 Status|REPORTED|RESOLVED

--- Comment #3 from Joshua Goins  ---
Closing as I'm certain it's not our issue

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

[plasmashell] [Bug 482098] Overlapping widgets with Activities widget on panel

2024-05-11 Thread Kishore Gopalakrishnan
https://bugs.kde.org/show_bug.cgi?id=482098

Kishore Gopalakrishnan  changed:

   What|Removed |Added

 CC||kishor...@gmail.com

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

[krita] [Bug 486893] Crashes when inserting keyframe columns when there's a transform mask.

2024-05-11 Thread wolthera
https://bugs.kde.org/show_bug.cgi?id=486893

--- Comment #1 from wolthera  ---
Created attachment 169379
  --> https://bugs.kde.org/attachment.cgi?id=169379=edit
Assert style crash.

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

[krita] [Bug 486893] New: Crashes when inserting keyframe columns when there's a transform mask.

2024-05-11 Thread wolthera
https://bugs.kde.org/show_bug.cgi?id=486893

Bug ID: 486893
   Summary: Crashes when inserting keyframe columns when there's a
transform mask.
Classification: Applications
   Product: krita
   Version: unspecified
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: crash
  Priority: NOR
 Component: Animation
  Assignee: krita-bugs-n...@kde.org
  Reporter: griffinval...@gmail.com
  Target Milestone: ---

Created attachment 169378
  --> https://bugs.kde.org/attachment.cgi?id=169378=edit
Malloc style crash.

SUMMARY
I was making a roundtable, when adding 

STEPS TO REPRODUCE
1. Have an animated transform mask applied to an animated layer
2. Try to insert keyframes left or right on the painted layer, where there's
also a keyframe on the transform mask.
3. This will sometimes cause a malloc, and sometimes an assert.

SYSINFO:
Krita

 Version: 5.3.0-prealpha (git f133846)
 Hidpi: true

Qt

  Version (compiled): 5.15.7
  Version (loaded): 5.15.7

OS Information

  Build ABI: x86_64-little_endian-lp64
  Build CPU: x86_64
  CPU: x86_64
  Kernel Type: linux
  Kernel Version: 6.5.0-28-generic
  Pretty Productname: Ubuntu 20.04.6 LTS
  Product Type: ubuntu
  Product Version: 20.04
  Desktop: 
  Appimage build: No

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

[Tokodon] [Bug 486465] turning off spell checking in the compose window doesn't persist after posting

2024-05-11 Thread Joshua Goins
https://bugs.kde.org/show_bug.cgi?id=486465

Joshua Goins  changed:

   What|Removed |Added

   Version Fixed In||24.05

--- Comment #3 from Joshua Goins  ---
This is partially on us, we were enforcing the spell checker always. The
settings are a little bit confusing right now, but this is a greater
Kirigami/Sonnet issue. Now:

- If you want to disable spell checking by default, uncheck the "Automatic
spell-checking" under Settings.
- If you want to enable or disable spell checking temporarily, use the
right-click or long-tap context menu.
- Note that the global setting takes a restart of Tokodon to take effect.

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

[Tokodon] [Bug 486465] turning off spell checking in the compose window doesn't persist after posting

2024-05-11 Thread Joshua Goins
https://bugs.kde.org/show_bug.cgi?id=486465

Joshua Goins  changed:

   What|Removed |Added

  Latest Commit|https://invent.kde.org/netw |https://invent.kde.org/netw
   |ork/tokodon/-/commit/a17b7a |ork/tokodon/-/commit/86903e
   |62406f59f0c9904de95b84a1c4e |9d4551d58eb5233bda03297f513
   |48b7794 |0397255

--- Comment #2 from Joshua Goins  ---
Git commit 86903e9d4551d58eb5233bda03297f5130397255 by Joshua Goins.
Committed on 11/05/2024 at 15:35.
Pushed by redstrate into branch 'release/24.05'.

Don't enforce the spellchecker even when it's disabled

qqc2-desktop-style already handles this for us by checking if Sonnet is
disabled and enabling the spell check if needed.
(cherry picked from commit a17b7a62406f59f0c9904de95b84a1c4e48b7794)

M  +0-1src/content/ui/StatusComposer/StatusComposer.qml

https://invent.kde.org/network/tokodon/-/commit/86903e9d4551d58eb5233bda03297f5130397255

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

[Tokodon] [Bug 486465] turning off spell checking in the compose window doesn't persist after posting

2024-05-11 Thread Joshua Goins
https://bugs.kde.org/show_bug.cgi?id=486465

Joshua Goins  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
  Latest Commit||https://invent.kde.org/netw
   ||ork/tokodon/-/commit/a17b7a
   ||62406f59f0c9904de95b84a1c4e
   ||48b7794
 Resolution|--- |FIXED

--- Comment #1 from Joshua Goins  ---
Git commit a17b7a62406f59f0c9904de95b84a1c4e48b7794 by Joshua Goins.
Committed on 11/05/2024 at 15:35.
Pushed by redstrate into branch 'master'.

Don't enforce the spellchecker even when it's disabled

qqc2-desktop-style already handles this for us by checking if Sonnet is
disabled and enabling the spell check if needed.

M  +0-1src/content/ui/StatusComposer/StatusComposer.qml

https://invent.kde.org/network/tokodon/-/commit/a17b7a62406f59f0c9904de95b84a1c4e48b7794

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

[kde] [Bug 486892] New: Panel getting out of it's length when I logged in.

2024-05-11 Thread Ertugrul Uyar
https://bugs.kde.org/show_bug.cgi?id=486892

Bug ID: 486892
   Summary: Panel getting out of it's length when I logged in.
Classification: I don't know
   Product: kde
   Version: unspecified
  Platform: Ubuntu
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: unassigned-b...@kde.org
  Reporter: ertugruluyar.perso...@gmail.com
  Target Milestone: ---

Created attachment 169377
  --> https://bugs.kde.org/attachment.cgi?id=169377=edit
Panels positions and settings.

SUMMARY
When I logged in panel length getting strange. Then, when I enter the edit mode
and exit, panel getting normal length.
STEPS TO REPRODUCE
1. Open your laptop or PC. 
2. Give your password to login.
3. Wait the system to complete it's opening process.

OBSERVED RESULT
Only one of the three panel getting wrong length.

EXPECTED RESULT
Panel length is "fit content" setting.

SOFTWARE/OS VERSIONS
Operating System: TUXEDO OS 3
KDE Plasma Version: 6.0.4
KDE Frameworks Version: 6.1.0
Qt Version: 6.7.0
Kernel Version: 6.5.0-10036-tuxedo (64-bit)
Graphics Platform: Wayland
Processors: 6 × AMD Ryzen 5 4500U with Radeon Graphics
Memory: 13,5 GiB of RAM
Graphics Processor: AMD Radeon Graphics
Manufacturer: LENOVO
Product Name: 20VG
System Version: ThinkBook 15 G2 ARE

ADDITIONAL INFORMATION
I added pdf that has two screenshot that has the my panel settings and its
positions. All panels have the same settings.

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

[Tokodon] [Bug 481911] Content font size setting is not respected for post content

2024-05-11 Thread Joshua Goins
https://bugs.kde.org/show_bug.cgi?id=481911

Joshua Goins  changed:

   What|Removed |Added

   Version Fixed In||24.05

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

[Tokodon] [Bug 481911] Content font size setting is not respected for post content

2024-05-11 Thread Joshua Goins
https://bugs.kde.org/show_bug.cgi?id=481911

Joshua Goins  changed:

   What|Removed |Added

  Latest Commit|https://invent.kde.org/netw |https://invent.kde.org/netw
   |ork/tokodon/-/commit/6a5e76 |ork/tokodon/-/commit/ecbef0
   |d16b830ab974539f87b27d90c5a |a62500dc821e651f721027fb4d8
   |5911c67 |8291a96

--- Comment #5 from Joshua Goins  ---
Git commit ecbef0a62500dc821e651f721027fb4d88291a96 by Joshua Goins.
Committed on 11/05/2024 at 15:24.
Pushed by redstrate into branch 'release/24.05'.

Fix the content font not actually affecting the post text

This was a dumb mistake on my part, the QTextDocument needs a
defaultFont set.
(cherry picked from commit 6a5e76d16b830ab974539f87b27d90c5a5911c67)

M  +1-1src/account/notificationhandler.cpp
M  +2-2src/autotests/posttest.cpp
M  +1-2src/autotests/timelinetest.cpp
M  +1-2src/content/ui/PostDelegate/PostContent.qml
M  +1-9src/timeline/post.cpp
M  +0-7src/timeline/post.h
M  +5-2src/utils/texthandler.cpp
M  +7-3src/utils/texthandler.h

https://invent.kde.org/network/tokodon/-/commit/ecbef0a62500dc821e651f721027fb4d88291a96

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

[Tokodon] [Bug 481911] Content font size setting is not respected for post content

2024-05-11 Thread Joshua Goins
https://bugs.kde.org/show_bug.cgi?id=481911

Joshua Goins  changed:

   What|Removed |Added

 Resolution|--- |FIXED
  Latest Commit||https://invent.kde.org/netw
   ||ork/tokodon/-/commit/6a5e76
   ||d16b830ab974539f87b27d90c5a
   ||5911c67
 Status|CONFIRMED   |RESOLVED

--- Comment #4 from Joshua Goins  ---
Git commit 6a5e76d16b830ab974539f87b27d90c5a5911c67 by Joshua Goins.
Committed on 11/05/2024 at 15:24.
Pushed by redstrate into branch 'master'.

Fix the content font not actually affecting the post text

This was a dumb mistake on my part, the QTextDocument needs a
defaultFont set.

M  +1-1src/account/notificationhandler.cpp
M  +2-2src/autotests/posttest.cpp
M  +1-2src/autotests/timelinetest.cpp
M  +1-2src/content/ui/PostDelegate/PostContent.qml
M  +1-9src/timeline/post.cpp
M  +0-7src/timeline/post.h
M  +5-2src/utils/texthandler.cpp
M  +7-3src/utils/texthandler.h

https://invent.kde.org/network/tokodon/-/commit/6a5e76d16b830ab974539f87b27d90c5a5911c67

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

[xdg-desktop-portal-kde] [Bug 485376] org.freedesktop.portal.Inhibit (used by Firefox flatpak) does not prevent screen locking / sleeping

2024-05-11 Thread kinghat
https://bugs.kde.org/show_bug.cgi?id=485376

--- Comment #3 from kinghat  ---
someone posted on reddit that setting a name in flatpak > session bus > talks >
"org.freedesktop.ScreenSaver" is a workaround. in a quick test it seems it does
inhibit the lock screen while video is playing in firefox for me.

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

  1   2   >