[okular] [Bug 479599] Thumbnail sidepane in okular failed to allow continuous dragging across pages

2024-01-11 Thread Chan
https://bugs.kde.org/show_bug.cgi?id=479599

--- Comment #3 from Chan  ---
(In reply to Chan from comment #2)
> (In reply to Albert Astals Cid from comment #1)
> > You mean the thing that you click+drag the mouse cursor to the bottom of the
> > screen and it wraps to the top of the screen?
> > 
> > Are you using wayland?
> 
> Yes, the wrapping but of the mouse. Accurate! But it didn't require holding
> ctrl key, just click & holding on the thumbnail to drag view freely.
> and Yes, wayland.

Never mind, it's just a minor bug. Dragging regular scroll bar is the same
thing. I just thought it's a cool feature, like VSCode minimap, and wish to had
it in newer version of Okular. Thank you for replying.

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

[kdeconnect] [Bug 391083] Allow user to 'press' keys that aren't on Android keyboard

2024-01-11 Thread Guilherme Silva
https://bugs.kde.org/show_bug.cgi?id=391083

Guilherme Silva  changed:

   What|Removed |Added

 CC||oguilhe...@protonmail.com

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

[okular] [Bug 479599] Thumbnail sidepane in okular failed to allow continuous dragging across pages

2024-01-11 Thread Chan
https://bugs.kde.org/show_bug.cgi?id=479599

--- Comment #2 from Chan  ---
(In reply to Albert Astals Cid from comment #1)
> You mean the thing that you click+drag the mouse cursor to the bottom of the
> screen and it wraps to the top of the screen?
> 
> Are you using wayland?

Yes, the wrapping but of the mouse. Accurate! But it didn't require holding
ctrl key, just click & holding on the thumbnail to drag view freely.
and Yes, wayland, is that the problem?

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

[systemsettings] [Bug 478811] Qt 6.7 "Error loading QML file." System settings on Plasma 6.0 Beta 2

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

Bug Janitor Service  changed:

   What|Removed |Added

   Priority|HI  |VHI

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

[plasmashell] [Bug 479682] Mouse cursor does not show.

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

Bug Janitor Service  changed:

   What|Removed |Added

   Keywords||qt6

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

[systemsettings] [Bug 478811] Qt 6.7 "Error loading QML file." System settings on Plasma 6.0 Beta 2

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

fanzhuyi...@gmail.com changed:

   What|Removed |Added

   See Also||https://bugreports.qt.io/br
   ||owse/QTBUG-120189
Summary|"Error loading QML file."   |Qt 6.7 "Error loading QML
   |System settings on Plasma   |file." System settings on
   |6.0 Beta 2  |Plasma 6.0 Beta 2

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

[systemsettings] [Bug 479681] After updating from plasma 5.27.* to 5.90.0-5.92.0 (plasma 6 beta 1 - plasma RC 1) the system settings app has an error loading QML files

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

Antonio Rojas  changed:

   What|Removed |Added

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

--- Comment #1 from Antonio Rojas  ---


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

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

[systemsettings] [Bug 478811] "Error loading QML file." System settings on Plasma 6.0 Beta 2

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

Antonio Rojas  changed:

   What|Removed |Added

 CC||mrashcrea...@gmail.com

--- Comment #19 from Antonio Rojas  ---
*** Bug 479681 has been marked as a duplicate of this bug. ***

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

[okular] [Bug 479683] New: Okular does not start due to missing okularpart

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

Bug ID: 479683
   Summary: Okular does not start due to missing okularpart
Classification: Applications
   Product: okular
   Version: 24.01.90
  Platform: Arch Linux
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: okular-de...@kde.org
  Reporter: madc...@atlas.cz
  Target Milestone: ---

Since KDE 6 RC1 Okular does not start with "kf.coreaddons: "Could not find
plugin okularpart" message in the console and the corresponding UI dialog. On
Arch Linux, the "okularpart.so" is installed in
"/usr/lib/qt6/plugins/kf6/parts" which is a path that Okular does not consider
when it attempts to load the plugin. There are other plugins installed on the
same path and applications that use them seem to work fine, which makes me
think that this might not be just a packaging issue.

FWIW, I can get Okular to work by doing this:

diff --git a/shell/shell.cpp b/shell/shell.cpp
index 0a006d5ca..cf0d57177 100644
--- a/shell/shell.cpp
+++ b/shell/shell.cpp
@@ -183,6 +183,25 @@ private:
 QWidget *m_dumbTitleWidget = nullptr;
 };

+static KPluginFactory::Result findOkularPart()
+{
+auto result =
KPluginFactory::loadFactory(KPluginMetaData(QStringLiteral("okularpart")));
+if (result) {
+return result;
+} else {
+auto metadatas = KPluginMetaData::findPlugins(
+QStringLiteral("kf6/parts"),
+[](const auto ) { return md.name() == QStringLiteral("Okular");
}
+);
+
+if (metadatas.isEmpty()) {
+return result;
+}
+
+return KPluginFactory::loadFactory(metadatas.at(0));
+}
+}
+
 Shell::Shell(const QString )
 : KParts::MainWindow()
 , m_menuBarWasShown(true)
@@ -201,7 +220,7 @@ Shell::Shell(const QString )
 // name which is a bad idea usually.. but it's alright in this
 // case since our Part is made for this Shell

-const auto result =
KPluginFactory::loadFactory(KPluginMetaData(QStringLiteral("okularpart")));
+const auto result = findOkularPart();

 if (!result) {
 // if we couldn't find our Part, we exit since the Shell by


Arch Linux
KF6 5.248.0
Plasma 5.92.0
Okular 24.01.90

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

[digikam] [Bug 479674] Select Multiple Nodes in the Albums Tree View

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

Maik Qualmann  changed:

   What|Removed |Added

 Depends on|479673  |


Referenced Bugs:

https://bugs.kde.org/show_bug.cgi?id=479673
[Bug 479673] Search under parent
-- 
You are receiving this mail because:
You are watching all bug changes.

[digikam] [Bug 479673] Search under parent

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

Maik Qualmann  changed:

   What|Removed |Added

 Blocks|479674  |


Referenced Bugs:

https://bugs.kde.org/show_bug.cgi?id=479674
[Bug 479674] Select Multiple Nodes in the Albums Tree View
-- 
You are receiving this mail because:
You are watching all bug changes.

[digikam] [Bug 479675] Missing Thumbnails with External Drive

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

Maik Qualmann  changed:

   What|Removed |Added

 Depends on|479673, 479674  |


Referenced Bugs:

https://bugs.kde.org/show_bug.cgi?id=479673
[Bug 479673] Search under parent
https://bugs.kde.org/show_bug.cgi?id=479674
[Bug 479674] Select Multiple Nodes in the Albums Tree View
-- 
You are receiving this mail because:
You are watching all bug changes.

[digikam] [Bug 479673] Search under parent

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

Maik Qualmann  changed:

   What|Removed |Added

 Blocks|479675  |


Referenced Bugs:

https://bugs.kde.org/show_bug.cgi?id=479675
[Bug 479675] Missing Thumbnails with External Drive
-- 
You are receiving this mail because:
You are watching all bug changes.

[digikam] [Bug 479674] Select Multiple Nodes in the Albums Tree View

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

Maik Qualmann  changed:

   What|Removed |Added

 Blocks|479675  |


Referenced Bugs:

https://bugs.kde.org/show_bug.cgi?id=479675
[Bug 479675] Missing Thumbnails with External Drive
-- 
You are receiving this mail because:
You are watching all bug changes.

[plasmashell] [Bug 479682] New: Mouse cursor does not show.

2024-01-11 Thread Kanwar Plaha
https://bugs.kde.org/show_bug.cgi?id=479682

Bug ID: 479682
   Summary: Mouse cursor does not show.
Classification: Plasma
   Product: plasmashell
   Version: 5.92.0
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: major
  Priority: NOR
 Component: general
  Assignee: plasma-b...@kde.org
  Reporter: kanwar.pl...@gmail.com
CC: k...@davidedmundson.co.uk
  Target Milestone: 1.0

SUMMARY
After upgrade to 5.92.0, the mouse cursor shows neither on the laptop screen
nor the external monitor.
I have tried changing the cursor theme too but did not help.
The session is plasma/wayland.

STEPS TO REPRODUCE
1. Install KDE Plasma 5.92.0
2. After login from sddm, there is no mouse cursor
3. Widgets can still be clicked if you "know" where the cursor is

OBSERVED RESULT
Mouse does not show although widgets/buttons can be clicked if you can tell
that the mouse is over them.

EXPECTED RESULT
Mouse cursor shows as normal

SOFTWARE/OS VERSIONS
Linux/KDE Plasma: Linux 6.5.11-1 (64-bit), KDE Plasma 5.92.0 (Plasma 6 RC1)
KDE Plasma Version: 5.92.0
KDE Frameworks Version: 5.248.0
Qt Version: 6.6.1

ADDITIONAL INFORMATION
None

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

[digikam] [Bug 479675] Missing Thumbnails with External Drive

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

Maik Qualmann  changed:

   What|Removed |Added

  Component|Albums-MainView |Setup-Collections

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

[digikam] [Bug 479675] Missing Thumbnails with External Drive

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

--- Comment #1 from Maik Qualmann  ---
I can't reproduce the problem here on Windows. It can occur if the external
removable media have the same partition UUID. This occurs due to production
reasons with new hard drives, the manufacturers clone an image during
production. Therefore, when using external hard drives with digiKam, they
should always be formatted first so that a unique partition UUID is created.
In the future we will only use one file UUID in the collections, this is
already the case with digiKam-8.2.0, but there is still a fallback to the
previous methods.

Try to reproduce the problem and create a DebugView log. To do this, use an
external hard drive with only a few images.

https://www.digikam.org/contribute/

Maik

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

[systemsettings] [Bug 479681] After updating from plasma 5.27.* to 5.90.0-5.92.0 (plasma 6 beta 1 - plasma RC 1) the system settings app has an error loading QML files

2024-01-11 Thread Asher
https://bugs.kde.org/show_bug.cgi?id=479681

Asher  changed:

   What|Removed |Added

Summary|After updating from plasma  |After updating from plasma
   |5.27.* to 5.90.0 (plasma 6  |5.27.* to 5.90.0-5.92.0
   |beta 1) the system settings |(plasma 6 beta 1 - plasma
   |app has an error loading|RC 1) the system settings
   |QML files   |app has an error loading
   ||QML files

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

[systemsettings] [Bug 479681] After updating from plasma 5.27.* to 5.90.0 (plasma 6 beta 1) the system settings app has an error loading QML files

2024-01-11 Thread Asher
https://bugs.kde.org/show_bug.cgi?id=479681

Asher  changed:

   What|Removed |Added

   Keywords||qt6, wayland

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

[systemsettings] [Bug 479681] New: After updating from plasma 5.27.* to 5.90.0 (plasma 6 beta 1) the system settings app has an error loading QML files

2024-01-11 Thread Asher
https://bugs.kde.org/show_bug.cgi?id=479681

Bug ID: 479681
   Summary: After updating from plasma 5.27.* to 5.90.0 (plasma 6
beta 1) the system settings app has an error loading
QML files
Classification: Applications
   Product: systemsettings
   Version: 5.92.0
  Platform: Arch Linux
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: kcmshell
  Assignee: plasma-b...@kde.org
  Reporter: mrashcrea...@gmail.com
  Target Milestone: ---

Created attachment 164837
  --> https://bugs.kde.org/attachment.cgi?id=164837=edit
The system settings ap.

SUMMARY
***
After updating from plasma 5.27.* to 5.90.0 (plasma 6 beta 1) the system
settings app has an error loading QML files leaving the app unusable.

***


STEPS TO REPRODUCE
Getting on plasma 6 (when the original issue with system settings started
happening) :
I originally was on some stable version of plasma and decided to try out plasma
6 beta 1 and since I am on arch linux these were my steps to reproduce what I
did.
Plasma 6 beta 1: 
1. Open a terminal application to run a command.
2. Run the command  with a text editor of choice (nano, vim, etc)   sudo nano
/etc/pacman.conf
3. Enter the password if requested.
4. Scroll all the way down to the repository section
5. If not already added, add the kde-unstable repo to the TOP of the other
repos and enable extra-testing by removing the # in front of those lines. 
example: 

[kde-unstable]
Include = /etc/pacman.d/mirrorlist

#[core-testing]
#Include = /etc/pacman.d/mirrorlist

[core]
Include = /etc/pacman.d/mirrorlist

[extra-testing]
Include = /etc/pacman.d/mirrorlist

[extra]
Include = /etc/pacman.d/mirrorlist

6. Save the file and exit the file editor of choice to return to the terminal.

7. Run a pacman package update.  You can use any AUR helper ( yay, paru, etc)  
   paru -Syyu
this went and installed all those packages that I needed to update to plasma 6
beta 1 from my current version I was at at the time which I don't remember.
Probably some time around 5.27.* As I usually update packages once a week.

8. reboot (logout could work as well) and log back into plasma at the sddm and
you should see the welcome center saying the version of plasma 6 you are on. In
my case at the time it was plasma 6 beta 1. but the main issue continues to
happen in the RC1 

Settings app:
1. Click on settings app (skip to step #4 ) or Open a terminal application to
run a command.
2. Run the commandsystemsettings   to launch the system settings app for
KDE plasma.
3. You should see the app launch, go back to the terminal and check for the
errors that I have posted below.
4. Now on the system settings app that launched go to About this System or any
tab that primarily uses a QML file to function. And notice the blank page with
the errors posted below. 
OBSERVED RESULT 
When running the app from the terminal:
 HackTop :: ~ ยป  systemsettings
Using fontconfig file: "/home/ash/.fonts.conf"
KPackageStructure of KPluginMetaData(pluginId:"org.kde.plasma.worldmap",
fileName: "/usr/share/plasma/wallpapers/org.kde.plasma.worldmap/metadata.json")
does not match requested format "Plasma/Wallpaper"
KQuickPadding is both anonymous and named
qt.qml.typeresolution.cycle: Cyclic dependency detected between
"qrc:/qt/qml/org/kde/desktop/private/GlobalSonnetSettings.qml" and
"qrc:/qt/qml/org/kde/desktop/private/MobileTextActionsToolBar.qml"
qt.qml.typeresolution.cycle: Cyclic dependency detected between
"qrc:/qt/qml/org/kde/desktop/private/GlobalSonnetSettings.qml" and
"qrc:/qt/qml/org/kde/desktop/private/TextFieldContextMenu.qml"
qt.qml.typeresolution.cycle: Cyclic dependency detected between
"qrc:/qt/qml/org/kde/desktop/private/MobileTextActionsToolBar.qml" and
"qrc:/qt/qml/org/kde/desktop/private/TextFieldContextMenu.qml"
qt.qml.typeresolution.cycle: Cyclic dependency detected between
"qrc:/qt/qml/org/kde/desktop/private/GlobalSonnetSettings.qml" and
"qrc:/qt/qml/org/kde/desktop/MenuItem.qml"
qt.qml.typeresolution.cycle: Cyclic dependency detected between
"qrc:/qt/qml/org/kde/desktop/private/MobileTextActionsToolBar.qml" and
"qrc:/qt/qml/org/kde/desktop/MenuItem.qml"
qt.qml.typeresolution.cycle: Cyclic dependency detected between
"qrc:/qt/qml/org/kde/desktop/private/TextFieldContextMenu.qml" and
"qrc:/qt/qml/org/kde/desktop/MenuItem.qml"
qt.qml.typeresolution.cycle: Cyclic dependency detected between
"qrc:/qt/qml/org/kde/desktop/private/GlobalSonnetSettings.qml" and
"qrc:/qt/qml/org/kde/desktop/private/CheckIndicator.qml"
qt.qml.typeresolution.cycle: Cyclic dependency detected between
"qrc:/qt/qml/org/kde/desktop/private/MobileTextActionsToolBar.qml" and
"qrc:/qt/qml/org/kde/desktop/private/CheckIndicator.qml"
qt.qml.typeresolution.cycle: Cyclic dependency detected between
"qrc:/qt/qml/org/kde/desktop/private/TextFieldContextMenu.qml" and

[digikam] [Bug 479674] Select Multiple Nodes in the Albums Tree View

2024-01-11 Thread Maik Qualmann
https://bugs.kde.org/show_bug.cgi?id=479674
Bug 479674 depends on bug 479673, which changed state.

Bug 479673 Summary: Search under parent
https://bugs.kde.org/show_bug.cgi?id=479673

   What|Removed |Added

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

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

[digikam] [Bug 467786] Wishlist: Include Subfolders in Advanced Search

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

Maik Qualmann  changed:

   What|Removed |Added

 CC||st...@yahoo.com

--- Comment #1 from Maik Qualmann  ---
*** Bug 479673 has been marked as a duplicate of this bug. ***

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

[digikam] [Bug 479673] Search under parent

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

Maik Qualmann  changed:

   What|Removed |Added

 CC||metzping...@gmail.com
 Status|REPORTED|RESOLVED
 Resolution|--- |DUPLICATE
 OS|Other   |Microsoft Windows

--- Comment #1 from Maik Qualmann  ---


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

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

[digikam] [Bug 479675] Missing Thumbnails with External Drive

2024-01-11 Thread Maik Qualmann
https://bugs.kde.org/show_bug.cgi?id=479675
Bug 479675 depends on bug 479673, which changed state.

Bug 479673 Summary: Search under parent
https://bugs.kde.org/show_bug.cgi?id=479673

   What|Removed |Added

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

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

[kde] [Bug 479680] New: Wrong flag for Cocos (Keeling) islands

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

Bug ID: 479680
   Summary: Wrong flag for Cocos (Keeling) islands
Classification: I don't know
   Product: kde
   Version: unspecified
  Platform: PCLinuxOS
OS: Linux
Status: REPORTED
  Severity: task
  Priority: NOR
 Component: general
  Assignee: unassigned-b...@kde.org
  Reporter: kingsley.buga...@iinet.net.au
  Target Milestone: ---

Christmas island and the Cocos (Keeling) islands are external territories of
Australia.

In directory '/usr/share/kf5/locale/countries' Christmas island, cx, has it's
own unique flag but the Cocos islands, cc, have the Australian flag.

The flag for the Cocos islands is;

https://en.wikipedia.org/wiki/Flag_of_the_Cocos_(Keeling)_Islands

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

[kscreenlocker] [Bug 338796] Blank the screen using Esc key while on the lock screen

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

Bug Janitor Service  changed:

   What|Removed |Added

 Status|CONFIRMED   |ASSIGNED

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

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

[Powerdevil] [Bug 479659] Cannot unlock the screen if mouse pointer is moved immediately after locking

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

--- Comment #4 from fanzhuyi...@gmail.com ---
Actually when this bug is triggered, I cannot even use Crtl-Alt-F3 to switch to
virtual TTY.

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

[plasmashell] [Bug 479679] plasmashell exits with -1 on right mouse click with layershellqt: Cannot attach popup of unknown type

2024-01-11 Thread Doug
https://bugs.kde.org/show_bug.cgi?id=479679

Doug  changed:

   What|Removed |Added

 CC||dougsha...@protonmail.com
 Resolution|--- |WAITINGFORINFO
 Status|REPORTED|NEEDSINFO

--- Comment #1 from Doug  ---
I cannot reproduce on KDE Neon Unstable.  Is your panel's configuration
default, or have you changed anything?

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

[plasmashell] [Bug 479679] plasmashell exits with -1 on right mouse click with layershellqt: Cannot attach popup of unknown type

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

Bug Janitor Service  changed:

   What|Removed |Added

   Keywords||qt6

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

[digikam] [Bug 479674] Select Multiple Nodes in the Albums Tree View

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

Maik Qualmann  changed:

   What|Removed |Added

 OS|Other   |Microsoft Windows

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

[digikam] [Bug 479676] Video Files are Imported with UTC dates

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

Maik Qualmann  changed:

   What|Removed |Added

 OS|Other   |Microsoft Windows

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

[digikam] [Bug 479676] Video Files are Imported with UTC dates

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

Maik Qualmann  changed:

   What|Removed |Added

 CC||metzping...@gmail.com
 Resolution|--- |WAITINGFORINFO
 Status|REPORTED|NEEDSINFO

--- Comment #1 from Maik Qualmann  ---
File date and metadata date of a video file may differ. Some devices store a
UTC date in the metadata or vice versa, but do not set the UTC flag correctly.
We need a test video sample to reproduce it.

Maik

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

[NeoChat] [Bug 479501] NeoChat Segmentation Fault

2024-01-11 Thread Enrico
https://bugs.kde.org/show_bug.cgi?id=479501

Enrico  changed:

   What|Removed |Added

 Status|CONFIRMED   |RESOLVED
 Resolution|--- |UPSTREAM

--- Comment #7 from Enrico  ---
Yes, it works now after updating libquotient from Kaos repositories

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

[kdeconnect] [Bug 479013] KDE Connect keeps asking for permission for the first time remote input is used on Wayland for each boot

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

unblended_icing...@simplelogin.com changed:

   What|Removed |Added

 CC||unblended_icing552@simplelo
   ||gin.com

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

[digikam] [Bug 479675] Missing Thumbnails with External Drive

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

Maik Qualmann  changed:

   What|Removed |Added

   Severity|major   |normal

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

[digikam] [Bug 479675] Missing Thumbnails with External Drive

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

Maik Qualmann  changed:

   What|Removed |Added

 CC||metzping...@gmail.com
 OS|Other   |Microsoft Windows

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

[digikam] [Bug 269340] Possibility to select more than one folder from tree-view

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

Maik Qualmann  changed:

   What|Removed |Added

 CC||st...@yahoo.com

--- Comment #20 from Maik Qualmann  ---
*** Bug 479674 has been marked as a duplicate of this bug. ***

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

[digikam] [Bug 479674] Select Multiple Nodes in the Albums Tree View

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

Maik Qualmann  changed:

   What|Removed |Added

 CC||metzping...@gmail.com
 Resolution|--- |DUPLICATE
 Status|REPORTED|RESOLVED

--- Comment #1 from Maik Qualmann  ---


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

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

[digikam] [Bug 479675] Missing Thumbnails with External Drive

2024-01-11 Thread Maik Qualmann
https://bugs.kde.org/show_bug.cgi?id=479675
Bug 479675 depends on bug 479674, which changed state.

Bug 479674 Summary: Select Multiple Nodes in the Albums Tree View
https://bugs.kde.org/show_bug.cgi?id=479674

   What|Removed |Added

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

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

[kwin] [Bug 479493] Titlebars of GTK apps can slide under a top panel with "drag to top of screen the maximize" setting disabled

2024-01-11 Thread Doug
https://bugs.kde.org/show_bug.cgi?id=479493

--- Comment #3 from Doug  ---
(In reply to Nate Graham from comment #1)
> Do you have the "drag to top to maximize window" setting disabled? When it
> enabled, dragging anything up to the top of the screen--or its top-most
> panel--is supposed to maximize the window, but I don't see that happening in
> your screen recording.
> 
> I can reproduce the issue with that setting disabled, but not with it
> enabled.

I disable Maximize: Windows Dropped to Top Edge, as often I want to drag a
window to the top edge and not maximize it and find that behavior pretty
frustrating (there's already a maximize button right there, too!)  I just added
a video showing how, on my computer, the issue as defined in the bug title
persists either way, though the problem of the titlebar being covered by the
panel is masked by the maximize behavior repositioning the titlebar in the
correct location.

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

[kwin] [Bug 479493] Titlebars of GTK apps can slide under a top panel with "drag to top of screen the maximize" setting disabled

2024-01-11 Thread Doug
https://bugs.kde.org/show_bug.cgi?id=479493

--- Comment #2 from Doug  ---
Created attachment 164836
  --> https://bugs.kde.org/attachment.cgi?id=164836=edit
video of apps maximizing when dragged to top of screen.

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

[print-manager] [Bug 479333] Unable to print non-A4 page sizes correctly with KDE applications

2024-01-11 Thread Leisquid Li
https://bugs.kde.org/show_bug.cgi?id=479333

Leisquid Li  changed:

   What|Removed |Added

   Assignee|unassigned-b...@kde.org |dantt...@gmail.com
  Component|general |general
Product|kde |print-manager

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

[dolphin] [Bug 469316] With multiple tabs, closing split view doesn't update tab name

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

Bug Janitor Service  changed:

   What|Removed |Added

 Status|REPORTED|ASSIGNED
 Ever confirmed|0   |1

--- Comment #2 from Bug Janitor Service  ---
A possibly relevant merge request was started @
https://invent.kde.org/system/dolphin/-/merge_requests/698

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

[plasmashell] [Bug 479379] Panel is inappropriately highlighted on startup

2024-01-11 Thread Doug
https://bugs.kde.org/show_bug.cgi?id=479379

--- Comment #3 from Doug  ---
(In reply to Nate Graham from comment #2)
> I cannot reproduce this; If you can still reproduce it in Plasma 6 RC1, can
> you try to narrow down the circumstances under which it happens?

Will do, but I haven't gotten any KDE updates in a couple days now, should RC1
updates have come through?

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

[plasmashell] [Bug 479340] Global menu closes when menu item is clicked

2024-01-11 Thread Doug
https://bugs.kde.org/show_bug.cgi?id=479340

--- Comment #1 from Doug  ---
I'm sorry, but why was the keyword for the version changed from 5.91.0 to
5.27.10?  I haven't had this issue in my Plasma 5 installs ever, it seems like
it is specific to Plasma 6.

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

[plasmashell] [Bug 479679] New: plasmashell exits with -1 on right mouse click with layershellqt: Cannot attach popup of unknown type

2024-01-11 Thread Timur Mangliev
https://bugs.kde.org/show_bug.cgi?id=479679

Bug ID: 479679
   Summary: plasmashell exits with -1 on right mouse click with
layershellqt: Cannot attach popup of unknown type
Classification: Plasma
   Product: plasmashell
   Version: 5.92.0
  Platform: Gentoo Packages
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: Panel
  Assignee: plasma-b...@kde.org
  Reporter: tigrma...@gmail.com
CC: niccolo.venera...@gmail.com
  Target Milestone: 1.0

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. RMB on plasmashell panel anywhere

OBSERVED RESULT
exit with 255

EXPECTED RESULT
showing popup

SOFTWARE/OS VERSIONS
Linux/KDE Plasma: Gentoo 2.14/5.92.0
(available in About System)
KDE Plasma Version: 5.92.0
KDE Frameworks Version: 5.248.0
Qt Version: 6.6.1

ADDITIONAL INFORMATION

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

[systemsettings] [Bug 479236] Column header text in View Logs and View Connections page is cut off vertically and horizontally

2024-01-11 Thread Doug
https://bugs.kde.org/show_bug.cgi?id=479236

Doug  changed:

   What|Removed |Added

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

--- Comment #3 from Doug  ---
(In reply to Nate Graham from comment #2)
> Are these two screenshots using different scale factors?
> 
> What font and font size are you using?

Honest can't remember what the scale size when I took the screenshot as I've
moved the scaling all over the place checking various things.  So I rechecked
at 175% (what I've been using mostly, and most likely what the screenshots were
at) and at 100% and 200%, and it doesn't make a difference.  

The fonts I am using should be default- Noto Sans, 10 pt.

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

[kwin] [Bug 479614] Scroll direction inverted on Overview list of virtual desktop

2024-01-11 Thread Doug
https://bugs.kde.org/show_bug.cgi?id=479614

--- Comment #5 from Doug  ---
(In reply to Dennis Kรถrner from comment #2)
> (In reply to Doug from comment #1)
> > The horizontal list is scrolling in the same direction as on scrollable
> > documents for me, but it is very slow.  The bigger issue I notice is that
> > the list of desktops isn't scrollable without first clicking on the + or a
> > desktop thumbnail and changing desktops.
> > 
> > Of course, this is probably a bit of an edge case since it takes a lot of
> > desktops to become an issue at all.
> 
> Weird! Are you using a trackpad or a mouse? Do you have natural scrolling
> enabled or disabled? Natural scrolling is the only setting I played around
> with on an otherwise vanilla system.
> 
> Yeah, if you reopen the overview you need to select a desktop thumbnail to
> be able to scroll through the list. But I thought that it might be an UI/UX
> decision to not scroll on mouse over.
> 
> Sure, it is a bit of an edge case, but there are definitely people out there
> that are using a lot of virtual desktops. Some of them might be even former
> users of other DEs that are familiar with a 1-d horizontal layout. ;-)

I am using a trackpad, with Natural Scrolling enabled.

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

[dolphin] [Bug 478866] With Qt 6.7, every QDockWidget panel is enabled in every new window

2024-01-11 Thread hexchain
https://bugs.kde.org/show_bug.cgi?id=478866

hexchain  changed:

   What|Removed |Added

 CC||k...@hexchain.org

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

[kwin] [Bug 479657] List of virtual desktops is not scrollable on Overview until a virtual desktop thumbnail is selected

2024-01-11 Thread Doug
https://bugs.kde.org/show_bug.cgi?id=479657

Doug  changed:

   What|Removed |Added

 CC||dougsha...@protonmail.com

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

[Powerdevil] [Bug 479659] Cannot unlock the screen if mouse pointer is moved immediately after locking

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

--- Comment #3 from fanzhuyi...@gmail.com ---
For me this only happens on wayland.

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

[kwin] [Bug 479279] Desktop Effects that involve squash and stretch are obscured by white pixels

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

--- Comment #3 from pawlowski...@gmail.com ---
Text file with console output is attached. Please note that I only get output
when running in a Wayland session and only when not using sudo. If I'm in X11
or I append sudo to the start of the command, I get
-- No entries --

Hopefully this helps; I don't see anything specifically mentioning desktop
effects in there but I also don't know what I'd be looking for.

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

[kwin] [Bug 479279] Desktop Effects that involve squash and stretch are obscured by white pixels

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

--- Comment #2 from pawlowski...@gmail.com ---
Created attachment 164835
  --> https://bugs.kde.org/attachment.cgi?id=164835=edit
Output from journalctl --user-unit plasma-kwin_wayland --boot 0

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

[dolphin] [Bug 479399] Location bar shows wrong path for an encrypted root partition

2024-01-11 Thread Jin Liu
https://bugs.kde.org/show_bug.cgi?id=479399

Jin Liu  changed:

   What|Removed |Added

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

--- Comment #1 from Jin Liu  ---
Not reproducible in 6.0 RC1. Likely a side effect of
https://bugs.kde.org/show_bug.cgi?id=478839.

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

[kscreenlocker] [Bug 338796] Blank the screen using Esc key while on the lock screen

2024-01-11 Thread Jakob Petsovits
https://bugs.kde.org/show_bug.cgi?id=338796

--- Comment #16 from Jakob Petsovits  ---
Whoops, meant to add a reference to [1]
https://invent.kde.org/plasma/kscreenlocker/-/blob/master/greeter/greeterapp.cpp?ref_type=heads#L626
in the previous comment.

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

[kscreenlocker] [Bug 338796] Blank the screen using Esc key while on the lock screen

2024-01-11 Thread Jakob Petsovits
https://bugs.kde.org/show_bug.cgi?id=338796

--- Comment #15 from Jakob Petsovits  ---
Works for me on Plasma 5.27 but confirmed broken on 6.0 RC1.

A quick log addition shows that in kscreenlocker's greeterapp.cpp, the "else"
condition for recognizing the Qt::Key_Escape event [1] is entered as expected,
but the KScreen::Dpms::supportedChanged signal did not get emitted. Resolving
the bug will mean figuring out why that's not happening.

Also, are we creating a new KScreen::Dpms every time the Escape key is hit?
That seems just a tiny bit wasteful.

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

[Powerdevil] [Bug 479659] Cannot unlock the screen if mouse pointer is moved immediately after locking

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

fanzhuyi...@gmail.com changed:

   What|Removed |Added

Product|kscreenlocker   |Powerdevil
  Component|general |general
 CC||m...@ratijas.tk,
   ||natalie_clar...@yahoo.de

--- Comment #2 from fanzhuyi...@gmail.com ---
changed component to powerdevil since support for 0s timeout was implemented
there: https://invent.kde.org/plasma/powerdevil/-/merge_requests/301

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

[kscreenlocker] [Bug 479659] Cannot unlock the screen if mouse pointer is moved immediately after locking

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

fanzhuyi...@gmail.com changed:

   What|Removed |Added

 Status|REPORTED|CONFIRMED
 Ever confirmed|0   |1
 CC||fanzhuyi...@gmail.com

--- Comment #1 from fanzhuyi...@gmail.com ---
Can confirm

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

[frameworks-baloo] [Bug 478459] Native Fast Indexer cannot find files in subfolders on mounted drive

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

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.

[kate] [Bug 478206] kate hangs while editing remote files

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

Bug Janitor Service  changed:

   What|Removed |Added

 Resolution|WAITINGFORINFO  |WORKSFORME
 Status|NEEDSINFO   |RESOLVED

--- Comment #9 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.

[krita] [Bug 478822] What I draw appear on the unselected keyframe.

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

Bug Janitor Service  changed:

   What|Removed |Added

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

--- Comment #3 from Bug Janitor Service  ---
Thanks for your comment!

Automatically switching the status of this bug to REPORTED so that the KDE team
knows that the bug is ready to get confirmed.

In the future you may also do this yourself when providing needed information.

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

[plasma-systemmonitor] [Bug 478122] Sometimes the system monitor crashes in the Processes tab

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

Bug Janitor Service  changed:

   What|Removed |Added

 Resolution|WAITINGFORINFO  |WORKSFORME
 Status|NEEDSINFO   |RESOLVED

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

[lokalize] [Bug 477704] Lokalize crashes the moment I open a .po-file to edit it

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

Bug Janitor Service  changed:

   What|Removed |Added

 Resolution|WAITINGFORINFO  |WORKSFORME
 Status|NEEDSINFO   |RESOLVED

--- Comment #8 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 473274] Effects (eg. transform, crop, greyscale) randomly skipped within nested sequences

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

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.

[kwin] [Bug 479217] With Wobbly Windows effect enabled, moving Windows on a monitor in vertical orientation results in windows flickering and missing sections

2024-01-11 Thread Matt
https://bugs.kde.org/show_bug.cgi?id=479217

--- Comment #4 from Matt  ---
(In reply to Nate Graham from comment #3)
> What GPU are you using?

both my test machines are amdgpu - a desktop 5700XT and a Framework with a 7040
series mobile APU

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

[kmymoney] [Bug 427955] Investments->Equities can also show Cost

2024-01-11 Thread Suresh PB
https://bugs.kde.org/show_bug.cgi?id=427955

Suresh PB  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|REPORTED|CONFIRMED

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

[kmymoney] [Bug 427955] Investments->Equities can also show Cost

2024-01-11 Thread Suresh PB
https://bugs.kde.org/show_bug.cgi?id=427955

--- Comment #1 from Suresh PB  ---
Cost is important to get a snapshot of the investments.

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

[kmymoney] [Bug 426511] Payee Partial Match not working as intended

2024-01-11 Thread Suresh PB
https://bugs.kde.org/show_bug.cgi?id=426511

Suresh PB  changed:

   What|Removed |Added

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

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

[kmymoney] [Bug 423858] Add AMFI to Online Quotes

2024-01-11 Thread Suresh PB
https://bugs.kde.org/show_bug.cgi?id=423858

--- Comment #2 from Suresh PB  ---
Now that Yahoo stopped support for updating prices, AMFI price update is a
great resource.

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

[kmymoney] [Bug 479678] New: Price importer for multiple securities

2024-01-11 Thread Suresh PB
https://bugs.kde.org/show_bug.cgi?id=479678

Bug ID: 479678
   Summary: Price importer for multiple securities
Classification: Applications
   Product: kmymoney
   Version: unspecified
  Platform: Other
OS: Other
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: importer
  Assignee: kmymoney-de...@kde.org
  Reporter: spill...@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
***
While KMyMoney currently supports price imports for individual securities using
CSV files, enabling batch updates for multiple securities through scripts would
significantly streamline the process.

STEPS TO REPRODUCE
1. File->Import->Price
2. Provide CSV file
3. Select the security

OBSERVED RESULT
Only single security can be imported using a file at a time

EXPECTED RESULT
I strongly recommend that KMyMoney implement batch price updates for multiple
securities, ideally through script-based imports. This would be a major
improvement for users who need to manage diverse investment portfolios.

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

ADDITIONAL INFORMATION
Now Yahoo no longer provide price update api, so manual update of the
securities price is essential.  This feature would help upload the price for
multiple securities at one go! Stop wasting time on manual updates. Import
prices for all your holdings in a flash.

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

[plasmashell] [Bug 478831] Plasmashell runs out of file descriptors when emacs visits lots of files

2024-01-11 Thread Fushan Wen
https://bugs.kde.org/show_bug.cgi?id=478831

--- Comment #4 from Fushan Wen  ---
Git commit 044763af6ccbb70847265743dc3c8b17a2b38ec6 by Fushan Wen.
Committed on 12/01/2024 at 02:04.
Pushed by fusionfuture into branch 'master'.

libtaskmanager: add test for bug 478831

A  +37   -0libtaskmanager/autotests/data/windows/bug478831.py
M  +47   -0libtaskmanager/autotests/waylandtasksmodeltest.cpp
M  +1-2libtaskmanager/autotests/waylandtasksmodeltestwrapper.py

https://invent.kde.org/plasma/plasma-workspace/-/commit/044763af6ccbb70847265743dc3c8b17a2b38ec6

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

[systemsettings] [Bug 479454] Letter and basic avatars with changeable backgrounds do not work

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

Nate Graham  changed:

   What|Removed |Added

  Latest Commit|https://invent.kde.org/plas |https://invent.kde.org/plas
   |ma/plasma-workspace/-/commi |ma/plasma-workspace/-/commi
   |t/48c036aab17b74da69cef2144 |t/57e6a81af420ba870044d498b
   |cacf78e8d00d6d1 |d5bd1e42ac0aa28

--- Comment #4 from Nate Graham  ---
Git commit 57e6a81af420ba870044d498bd5bd1e42ac0aa28 by Nate Graham.
Committed on 12/01/2024 at 03:24.
Pushed by ngraham into branch 'Plasma/6.0'.

kcm/users: fix letter-style avatars

We can't run grabToImage() on an item in a component. Luckily we don't
have to; just grab the image of the delegate itself which has the same
visual contents.
FIXED-IN: 6.0


(cherry picked from commit 48c036aab17b74da69cef2144cacf78e8d00d6d1)

M  +2-2kcms/users/src/ui/PicturesSheet.qml

https://invent.kde.org/plasma/plasma-workspace/-/commit/57e6a81af420ba870044d498bd5bd1e42ac0aa28

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

[kde] [Bug 479677] 6.5 version kernel causes session to close or OS to crash unexpectedly

2024-01-11 Thread nathan67003
https://bugs.kde.org/show_bug.cgi?id=479677

--- Comment #1 from nathan67003  ---
Created attachment 164834
  --> https://bugs.kde.org/attachment.cgi?id=164834=edit
Previous Xorg log (just in case)

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

[kde] [Bug 479677] 6.5 version kernel causes session to close or OS to crash unexpectedly

2024-01-11 Thread nathan67003
https://bugs.kde.org/show_bug.cgi?id=479677

nathan67003  changed:

   What|Removed |Added

 CC||nathan67...@globetrotter.ne
   ||t

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

[kde] [Bug 479677] New: 6.5 version kernel causes session to close or OS to crash unexpectedly

2024-01-11 Thread nathan67003
https://bugs.kde.org/show_bug.cgi?id=479677

Bug ID: 479677
   Summary: 6.5 version kernel causes session to close or OS to
crash unexpectedly
Classification: I don't know
   Product: kde
   Version: unspecified
  Platform: Kubuntu
OS: Linux
Status: REPORTED
  Severity: major
  Priority: NOR
 Component: general
  Assignee: unassigned-b...@kde.org
  Reporter: nathan67...@globetrotter.net
  Target Milestone: ---

Created attachment 164833
  --> https://bugs.kde.org/attachment.cgi?id=164833=edit
Xorg log

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
***
After updating to kernel version 6.5.0-14 on Kubuntu 22.04.3 LTS, active
session demonstrates erratic behaviour. Sometimes, opening an app causes the
error; sometimes scrolling inside an app does. In all cases, the error either
causes me to get kicked back to the login screen (session closes unexpectedly)
or the entire thing comes crashing down to a black screen and perhaps remains
so until I press the power button, at which point the kubuntu logo appears
briefly as in a normal shutdown (OS crashes entirely).

STEPS TO REPRODUCE
1. Clean install and update Kubuntu 22.04.3 LTS
2. Reboot to finish updates
3. Attempt to trigger bug - this could be caused by opening Discord (after
installing via Discover) for the first time, opening System Settings or
scrolling the System Settings left menu items (2/2 times in my experience).

OBSERVED RESULT
System is highly unstable and often, but not systematically, kicks user out of
session or hard crashes.

EXPECTED RESULT
System behaves in a stable fashion, as prior to update.

SOFTWARE/OS VERSIONS
Windows: N/A
macOS: N/A
Linux/KDE Plasma: Kubuntu 22.04.3 LTS
(available in About System)
KDE Plasma Version: 5.24.7
KDE Frameworks Version: 5.92.0
Qt Version: 5.15.3

ADDITIONAL INFORMATION
I have verified that this error occurs outside of my actions; a clean install
of Kubuntu 22.04.3 LTS which is then updated through Discover started showing
symptoms after barely any manipulation (chaging appearance to Breeze Dark,
installing Discord). (Some) PC hardware specs are listed below. Also uploading
Xorg logs in case they're remotely useful.
CPU: Intel i9-9900K
GPU: AMD/ATI Vega 10 XGA (Radeon Pro Vega 48)

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

[KScreen] [Bug 479630] Changing display resolution fries AMD graphics card on Kubuntu

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

--- Comment #7 from Noah Davis  ---
(In reply to vxs2005 from comment #6)
> @Noah Davis
> I noticed that even when my screen has noise on it, if I use screen
> recording the noise doesn't appear in the recording. Would this indicate
> that it's a display problem rather than a graphics card problem? I'm not too
> familiar with hardware, but I would assume if the noise was happening on the
> GPU then it would also appear in the screen recording.

I'm not a graphics technology expert, so I couldn't say exactly what things
like drivers or firmware affect, but it indicates that everything is OK on the
software side (the part that generates graphics before it is sent to hardware
to be displayed).

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

[krita] [Bug 479658] Moving with arrow keys breaks if you move viewport

2024-01-11 Thread Tiar
https://bugs.kde.org/show_bug.cgi?id=479658

Tiar  changed:

   What|Removed |Added

 CC||tamtamy.tym...@gmail.com

--- Comment #2 from Tiar  ---
I couldn't reproduce on Linux Mint either.

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

[systemsettings] [Bug 457705] Feature to change the pressure curve of the graphic tablet in the tablet KCM

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

Bug Janitor Service  changed:

   What|Removed |Added

 Status|CONFIRMED   |ASSIGNED

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

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

[NeoChat] [Bug 479590] Don't show reply or thread buttons when hovering over a message if you can't send messages in the channel

2024-01-11 Thread James Graham
https://bugs.kde.org/show_bug.cgi?id=479590

James Graham  changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
  Latest Commit||https://invent.kde.org/netw
   ||ork/neochat/-/commit/ec4aa7
   ||3e371dffc5c40ce438222537c08
   ||855c00f
 Resolution|--- |FIXED

--- Comment #2 from James Graham  ---
Git commit ec4aa73e371dffc5c40ce438222537c08855c00f by James Graham.
Committed on 12/01/2024 at 02:59.
Pushed by nvrwhere into branch 'master'.

Readonly Room

Add readonly property to a room and use it to decide whether to show chatbar,
replies and edits

M  +6-0src/neochatroom.cpp
M  +8-0src/neochatroom.h
M  +3-1src/qml/HoverActions.qml
M  +1-1src/qml/RoomPage.qml

https://invent.kde.org/network/neochat/-/commit/ec4aa73e371dffc5c40ce438222537c08855c00f

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

[Merkuro] [Bug 450571] LC_TIME zh_CN.UTF-8 letter only weekday label length is invalid

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

Bug Janitor Service  changed:

   What|Removed |Added

 Status|REPORTED|ASSIGNED
 Ever confirmed|0   |1

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

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

[systemsettings] [Bug 477750] UI for graphic tablet button and pen button mapping could use some improvement

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

--- Comment #6 from Joshua Goins  ---
Git commit 446d40371474996b82cc8995d4c36d4ede0f5240 by Joshua Goins.
Committed on 12/01/2024 at 01:42.
Pushed by redstrate into branch 'master'.

kcms/tablet: Buttons should be called "pen buttons"

The name "tool button" is an underlying technical name and it's much
clearer when it's referred to as pen buttons.

M  +3-3kcms/tablet/ui/main.qml

https://invent.kde.org/plasma/plasma-desktop/-/commit/446d40371474996b82cc8995d4c36d4ede0f5240

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

[kwin] [Bug 479583] cursor disappear on laptop screen in prime system with external display connected after kwin commit b214251f81cbacacf3ef483081a7cef15343fa7f,

2024-01-11 Thread Zamundaaa
https://bugs.kde.org/show_bug.cgi?id=479583

Zamundaaa  changed:

   What|Removed |Added

 CC||madc...@atlas.cz

--- Comment #11 from Zamundaaa  ---
*** Bug 479670 has been marked as a duplicate of this bug. ***

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

[kwin] [Bug 479670] Mouse cursor disappears when external screen is connected

2024-01-11 Thread Zamundaaa
https://bugs.kde.org/show_bug.cgi?id=479670

Zamundaaa  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 CC||xaver.h...@gmail.com
 Status|REPORTED|RESOLVED

--- Comment #3 from Zamundaaa  ---


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

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

[plasmashell] [Bug 479428] New wallpapers button (Get New) does nothing

2024-01-11 Thread Kotori Itsuka
https://bugs.kde.org/show_bug.cgi?id=479428

--- Comment #3 from Kotori Itsuka  ---
I started the log just before I opened the window.

Jan 12 11:05:43 oniichan plasmashell[1248]:
file:///usr/lib/qt6/qml/org/kde/kirigami/Heading.qml:97: TypeError: Cannot read
property 'Primary' of undefined
Jan 12 11:05:43 oniichan plasmashell[1248]:
file:///usr/lib/qt6/qml/org/kde/kirigami/Heading.qml:75: TypeError: Cannot read
property 'Normal' of undefined
Jan 12 11:05:43 oniichan plasmashell[1248]:
file:///usr/lib/qt6/qml/org/kde/kirigami/Heading.qml:97: TypeError: Cannot read
property 'Primary' of undefined
Jan 12 11:05:43 oniichan plasmashell[1248]:
file:///usr/lib/qt6/qml/org/kde/kirigami/Heading.qml:75: TypeError: Cannot read
property 'Normal' of undefined
Jan 12 11:05:44 oniichan plasmashell[1248]:
file:///usr/lib/qt6/qml/org/kde/kirigami/Heading.qml:97: TypeError: Cannot read
property 'Primary' of undefined
Jan 12 11:05:44 oniichan plasmashell[1248]:
file:///usr/lib/qt6/qml/org/kde/kirigami/Heading.qml:75: TypeError: Cannot read
property 'Normal' of undefined
Jan 12 11:05:46 oniichan plasmashell[1248]: QString::arg: 2 argument(s) missing
in org.kde.konsole
Jan 12 11:05:47 oniichan plasmashell[1248]:
file:///usr/lib/qt6/qml/org/kde/kirigami/Heading.qml:97: TypeError: Cannot read
property 'Primary' of undefined
Jan 12 11:05:47 oniichan plasmashell[1248]:
file:///usr/lib/qt6/qml/org/kde/kirigami/Heading.qml:75: TypeError: Cannot read
property 'Normal' of undefined
Jan 12 11:05:47 oniichan plasmashell[1248]: error creating screencast "Could
not find window id 0"
Jan 12 11:06:12 oniichan plasmashell[1248]: qt.qml.typeresolution.cycle: Cyclic
dependency detected between
"qrc:/qt/qml/org/kde/desktop/private/GlobalSonnetSettings.qml" and
"qrc:/qt/qml/org/kde/desktop/private/MobileTextActionsToolBar.qml"
Jan 12 11:06:12 oniichan plasmashell[1248]: qt.qml.typeresolution.cycle: Cyclic
dependency detected between
"qrc:/qt/qml/org/kde/desktop/private/GlobalSonnetSettings.qml" and
"qrc:/qt/qml/org/kde/desktop/private/TextFieldContextMenu.qml"
Jan 12 11:06:12 oniichan plasmashell[1248]: qt.qml.typeresolution.cycle: Cyclic
dependency detected between
"qrc:/qt/qml/org/kde/desktop/private/MobileTextActionsToolBar.qml" and
"qrc:/qt/qml/org/kde/desktop/private/TextFieldContextMenu.qml"
Jan 12 11:06:12 oniichan plasmashell[1248]: qt.qml.typeresolution.cycle: Cyclic
dependency detected between
"qrc:/qt/qml/org/kde/desktop/private/GlobalSonnetSettings.qml" and
"qrc:/qt/qml/org/kde/desktop/MenuItem.qml"
Jan 12 11:06:12 oniichan plasmashell[1248]: qt.qml.typeresolution.cycle: Cyclic
dependency detected between
"qrc:/qt/qml/org/kde/desktop/private/MobileTextActionsToolBar.qml" and
"qrc:/qt/qml/org/kde/desktop/MenuItem.qml"
Jan 12 11:06:12 oniichan plasmashell[1248]: qt.qml.typeresolution.cycle: Cyclic
dependency detected between
"qrc:/qt/qml/org/kde/desktop/private/TextFieldContextMenu.qml" and
"qrc:/qt/qml/org/kde/desktop/MenuItem.qml"
Jan 12 11:06:12 oniichan plasmashell[1248]: qt.qml.typeresolution.cycle: Cyclic
dependency detected between
"qrc:/qt/qml/org/kde/desktop/private/GlobalSonnetSettings.qml" and
"qrc:/qt/qml/org/kde/desktop/private/CheckIndicator.qml"
Jan 12 11:06:12 oniichan plasmashell[1248]: qt.qml.typeresolution.cycle: Cyclic
dependency detected between
"qrc:/qt/qml/org/kde/desktop/private/MobileTextActionsToolBar.qml" and
"qrc:/qt/qml/org/kde/desktop/private/CheckIndicator.qml"
Jan 12 11:06:12 oniichan plasmashell[1248]: qt.qml.typeresolution.cycle: Cyclic
dependency detected between
"qrc:/qt/qml/org/kde/desktop/private/TextFieldContextMenu.qml" and
"qrc:/qt/qml/org/kde/desktop/private/CheckIndicator.qml"
Jan 12 11:06:12 oniichan plasmashell[1248]:
file:///usr/share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ConfigurationAppletPage.qml:51:9:
TypeError: Cannot read property 'implicitHeight' of null
Jan 12 11:06:12 oniichan plasmashell[1248]:
file:///usr/share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ConfigurationAppletPage.qml:62:
Error: Cannot assign to non-existent property "cfg_iconDefault"
Jan 12 11:06:12 oniichan plasmashell[1248]:
file:///usr/share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ConfigurationAppletPage.qml:62:
Error: Cannot assign to non-existent property "cfg_icon"
Jan 12 11:06:12 oniichan plasmashell[1248]:
file:///usr/share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ConfigurationAppletPage.qml:62:
Error: Cannot assign to non-existent property "cfg_useCustomIconDefault"
Jan 12 11:06:12 oniichan plasmashell[1248]:
file:///usr/share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ConfigurationAppletPage.qml:62:
Error: Cannot assign to non-existent property "cfg_useCustomIcon"
Jan 12 11:06:12 oniichan plasmashell[1248]:
file:///usr/share/plasma/shells/org.kde.plasma.desktop/contents/configuration/ConfigurationAppletPage.qml:62:
Error: Cannot assign to non-existent property "cfg_ItemsGeometriesDefault"
Jan 12 11:06:12 

[krita] [Bug 479405] voliantsoin at location

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

--- Comment #2 from jazmini...@gmail.com ---
It was on start up.

On Thu, Jan 11, 2024, 5:01 PM Tiar  wrote:

> https://bugs.kde.org/show_bug.cgi?id=479405
>
> Tiar  changed:
>
>What|Removed |Added
>
> 
>  Ever confirmed|0   |1
>  Status|REPORTED|CONFIRMED
>  CC||tamtamy.tym...@gmail.com
>
> --- Comment #1 from Tiar  ---
> Confirming since it contains a crashlog.
>
> Can you tell us something about what were you doing when Krita crashed? You
> were adding some resource (for example a brush, or a bundle) to Krita,
> what was
> it? Or did it happen on startup?
>
> --
> You are receiving this mail because:
> You reported the bug.

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

[krita] [Bug 479405] voliantsoin at location

2024-01-11 Thread Tiar
https://bugs.kde.org/show_bug.cgi?id=479405

Tiar  changed:

   What|Removed |Added

   Severity|critical|crash

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

[krita] [Bug 479405] voliantsoin at location

2024-01-11 Thread Tiar
https://bugs.kde.org/show_bug.cgi?id=479405

Tiar  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|REPORTED|CONFIRMED
 CC||tamtamy.tym...@gmail.com

--- Comment #1 from Tiar  ---
Confirming since it contains a crashlog.

Can you tell us something about what were you doing when Krita crashed? You
were adding some resource (for example a brush, or a bundle) to Krita, what was
it? Or did it happen on startup?

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

[krita] [Bug 479603] Add a button to move colors generated with color patches into the current palette.

2024-01-11 Thread Tiar
https://bugs.kde.org/show_bug.cgi?id=479603

Tiar  changed:

   What|Removed |Added

 CC||tamtamy.tym...@gmail.com
 Ever confirmed|0   |1
 Status|REPORTED|CONFIRMED

--- Comment #1 from Tiar  ---
Seems like quite a good idea.

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

[kdeplasma-addons] [Bug 479414] Media frame widget lacks compact representation

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

Nate Graham  changed:

   What|Removed |Added

Summary|Photo frame widget lacks|Media frame widget lacks
   |compact representation  |compact representation

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

[krita] [Bug 478798] Lost progress on a file that was supposed to autosave every 15min, there is no backup or recovery file

2024-01-11 Thread Tiar
https://bugs.kde.org/show_bug.cgi?id=478798

Tiar  changed:

   What|Removed |Added

Summary|I lost about 3+ hours worth |Lost progress on a file
   |of progress on a piece that |that was supposed to
   |had autosaved every 15  |autosave every 15min, there
   |minutes.  There is no   |is no backup or recovery
   |backup and/or recovery file |file
   |of the document.  Attached  |
   |is all that was saved, but  |
   |it is missing the majority  |
   |of my artwork that I|
   |completed.  |

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

[Merkuro] [Bug 462165] Kalendar uses the old Google icon

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

Bug Janitor Service  changed:

   What|Removed |Added

 Status|REPORTED|ASSIGNED
 Ever confirmed|0   |1

--- Comment #1 from Bug Janitor Service  ---
A possibly relevant merge request was started @
https://invent.kde.org/frameworks/breeze-icons/-/merge_requests/314

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

[systemsettings] [Bug 478936] Unable to bind / use the calculator key in plasma 6 on Wayland

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

fanzhuyi...@gmail.com changed:

   What|Removed |Added

 CC||fanzhuyi...@gmail.com

--- Comment #4 from fanzhuyi...@gmail.com ---
I cannot assign the calculator key to shortcuts on either X11 or wayland. On
x11 when I press it kcalc shows up, but does not on wayland.

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

[KScreen] [Bug 479630] Changing display resolution fries AMD graphics card on Kubuntu

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

--- Comment #6 from vxs2...@yahoo.com ---
@Noah Davis
I noticed that even when my screen has noise on it, if I use screen recording
the noise doesn't appear in the recording. Would this indicate that it's a
display problem rather than a graphics card problem? I'm not too familiar with
hardware, but I would assume if the noise was happening on the GPU then it
would also appear in the screen recording.

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

[systemsettings] [Bug 479454] Letter and basic avatars with changeable backgrounds do not work

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

Nate Graham  changed:

   What|Removed |Added

   Version Fixed In||6.0
 Resolution|--- |FIXED
 Status|ASSIGNED|RESOLVED
  Latest Commit||https://invent.kde.org/plas
   ||ma/plasma-workspace/-/commi
   ||t/48c036aab17b74da69cef2144
   ||cacf78e8d00d6d1

--- Comment #3 from Nate Graham  ---
Git commit 48c036aab17b74da69cef2144cacf78e8d00d6d1 by Nate Graham.
Committed on 11/01/2024 at 23:35.
Pushed by ngraham into branch 'master'.

kcm/users: fix letter-style avatars

We can't run grabToImage() on an item in a component. Luckily we don't
have to; just grab the image of the delegate itself which has the same
visual contents.
FIXED-IN: 6.0

M  +2-2kcms/users/src/ui/PicturesSheet.qml

https://invent.kde.org/plasma/plasma-workspace/-/commit/48c036aab17b74da69cef2144cacf78e8d00d6d1

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

[digikam] [Bug 479676] New: Video Files are Imported with UTC dates

2024-01-11 Thread st11x
https://bugs.kde.org/show_bug.cgi?id=479676

Bug ID: 479676
   Summary: Video Files are Imported with UTC dates
Classification: Applications
   Product: digikam
   Version: 8.2.0
  Platform: Microsoft Windows
OS: Other
Status: REPORTED
  Severity: minor
  Priority: NOR
 Component: Metadata-Date
  Assignee: digikam-bugs-n...@kde.org
  Reporter: st...@yahoo.com
  Target Milestone: ---

Created attachment 164831
  --> https://bugs.kde.org/attachment.cgi?id=164831=edit
Metadata panel

STEPS TO REPRODUCE
1. Add a MP4 file to an album.
2. Look at the File Properties. 

OBSERVED RESULT

The date and time under the digiKam properties is in UTC while the date time
under file properties is in local time.


EXPECTED RESULT

The date and time under the digiKam properties should be the date time under
file properties (local time), or at least be configurable. 

For photos, they match.

See image attached.

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

[systemsettings] [Bug 477940] The "Apply" button does not become active after the first click

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

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

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

[digikam] [Bug 479674] Select Multiple Nodes in the Albums Tree View

2024-01-11 Thread st11x
https://bugs.kde.org/show_bug.cgi?id=479674

st...@yahoo.com  changed:

   What|Removed |Added

  Component|Searches-Advanced   |Albums-TreeView

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

[digikam] [Bug 479673] Search under parent

2024-01-11 Thread st11x
https://bugs.kde.org/show_bug.cgi?id=479673

st...@yahoo.com  changed:

   What|Removed |Added

Version|8.3.0   |8.2.0

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

[digikam] [Bug 479675] Missing Thumbnails with External Drive

2024-01-11 Thread st11x
https://bugs.kde.org/show_bug.cgi?id=479675

st...@yahoo.com  changed:

   What|Removed |Added

Summary|Select Multiple Nodes in|Missing Thumbnails with
   |the Albums Tree View|External Drive

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

[digikam] [Bug 479674] Select Multiple Nodes in the Albums Tree View

2024-01-11 Thread st11x
https://bugs.kde.org/show_bug.cgi?id=479674

st...@yahoo.com  changed:

   What|Removed |Added

 Blocks||479675


Referenced Bugs:

https://bugs.kde.org/show_bug.cgi?id=479675
[Bug 479675] Select Multiple Nodes in the Albums Tree View
-- 
You are receiving this mail because:
You are watching all bug changes.

  1   2   3   4   5   6   7   >