[kdevelop] [Bug 430033] New: Support display of context lines according to found places in files

2020-12-04 Thread Markus Elfring
https://bugs.kde.org/show_bug.cgi?id=430033

Bug ID: 430033
   Summary: Support display of context lines according to found
places in files
   Product: kdevelop
   Version: 5.6.0
  Platform: Other
OS: All
Status: REPORTED
  Severity: wishlist
  Priority: NOR
 Component: general
  Assignee: kdevelop-bugs-n...@kde.org
  Reporter: markus.elfr...@web.de
  Target Milestone: ---

I would occasionally like to see a bit more information according to places
which were found in files.

An other search tool supports such functionality already.
https://www.gnu.org/software/grep/manual/html_node/Context-Line-Control.html

Can the graphical user interface be accordingly extended for the function
“Find/replace in files”?

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

[dolphin] [Bug 429113] Missing app shortcut Icons

2020-12-04 Thread Méven Car
https://bugs.kde.org/show_bug.cgi?id=429113

--- Comment #14 from Méven Car  ---
(In reply to agentxlax from comment #13)
> Update I believe that somehow in the process of fixing the icons somehow the
> Flatpak system was broken. I noticed shortly after the 5.20.4 updates that I
> had no Flatpak icons. Then I went to open an image and it open with Gwenview
> instead of KolourPaint. I closed it, rightclicked the image, went to
> reassign KolourPaint as the default and it was not listed. I then checked
> the apps menu and not lisyted on there either, nor were any of my other
> Flatpaks. Attempted 4 different ways of adding them back and each time it
> would fail to launch the program. The FlatPak shortcuts in my Shortcuts
> folder other than not having their icons. I get the below when updating
> everything via Konsole using Topgrade which updates the FlatPaks as well.
> Any suggestions On how to fix this? thanks
> 
> Note that the directories 
> 
> '/var/lib/flatpak/exports/share'
> '/home/alienprober/.local/share/flatpak/exports/share'
> 
> are not in the search path set by the XDG_DATA_DIRS environment variable, so
> applications installed by Flatpak may not appear on your desktop until the
> session is restarted.
> 
> Looking for updates…
> Nothing to do.
> 
> Note that the directories 
> 
> '/var/lib/flatpak/exports/share'
> '/home/alienprober/.local/share/flatpak/exports/share'
> 
> are not in the search path set by the XDG_DATA_DIRS environment variable, so
> applications installed by Flatpak may not appear on your desktop until the
> session is restarted.

This is unrelated to this bug please report this elsewhere.

This seems like a distro/package or configuration issue as warning message says
:
> '/var/lib/flatpak/exports/share'
> '/home/alienprober/.local/share/flatpak/exports/share'
Should be in XDG_DATA_DIRS variable env, it is most likely not a KDE related
issue.

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

[valgrind] [Bug 382083] Failure to detect MUSL consistently.

2020-12-04 Thread Paul Floyd
https://bugs.kde.org/show_bug.cgi?id=382083

--- Comment #1 from Paul Floyd  ---
This diff seems to be more portable

diff --git a/configure.ac b/configure.ac
index b83787291..93b57504c 100755
--- a/configure.ac
+++ b/configure.ac
@@ -1085,7 +1085,7 @@ fi
 # GLIBC_VERSION is empty if a musl libc is used, so use the toolchain tuple
 # in this case.
 if test x$GLIBC_VERSION = x; then
-if $CC -dumpmachine | grep -q musl; then
+if $CC -v 2>&1 | grep -q musl; then
 GLIBC_VERSION=musl
 fi
 fi

(The proposed modification does not work on Alpine Linux, presumably because
the shell doesn't support csh redirection syntax.

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

[konsole] [Bug 430032] New: wishlist: konsole --hide-toolbar commandline option

2020-12-04 Thread Duncan
https://bugs.kde.org/show_bug.cgi?id=430032

Bug ID: 430032
   Summary: wishlist: konsole --hide-toolbar commandline option
   Product: konsole
   Version: master
  Platform: Other
OS: Other
Status: REPORTED
  Severity: wishlist
  Priority: NOR
 Component: general
  Assignee: konsole-de...@kde.org
  Reporter: 1i5t5.dun...@cox.net
  Target Milestone: ---

konsole needs a --hide-toolbar (--hide-toolbars?) command-line option to match
the --hide-menubar and --hide-tabbar options.

---
Optional read: background/usage-scenario and further information:

After kde unfortunately lost chained-global-hotkeys back in the infamous
kde3>kde4 upgrade I was forced to homebrew my own because I've way more hotkey
entry candidates than "extra" keys or wetware-memory for exotic modifier
combinations that might well be needed in various apps anyway, making
hotkey-chain trees the most reasonable solution since at minimum that requires
(key realization) a single global hotkey initiator with recursive invocation.

The trouble was I could only find one X-based solution (xbindkeys IIRC) with
the required key-chaining/recursive-invocation that I needed, and that was in
its advanced mode, which required lua scripting.  But I didn't know lua and
what with all the other changes I was having to do to accommodate the
still-badly-broken-at-the-time kde4 (yes, that's still a sore spot all these
years later, we'll leave it at that), I didn't want to have to learn it, not
for /just/ a hotkey solution.

So that left coming up with my own.  The trouble is I don't know C/C++ or even
(now) javascript/qtscript so that's out, but I do know bash, so I bashed out a
solution!  Enter a terminal -- konsole since we're talking kde -- to display
the TUI as a popup.  While the original TUI was all bash, being all scripted
that was rather slow.  The current iteration uses (TUI-based) pdmenu to
generate the TUI and respond to the chained hotkeys after the initial kde-based
launching hotkey, making it much faster tho still not as fast as an
all-native-code solution would be.

Of course years later and switching to wayland I'm glad I don't have a legacy-X
hotkeys solution to migrate off of, with the TUI-based solution workable as
long as a terminal is available and I can setup at least one global hotkey to
launch it in that terminal. =:^)

Meanwhile, the idea is to have the TUI /appear/ as if it's an independent popup
menu, not in a terminal window.

To make that happen I have a special konsole profile for the popup UI that has
the scrollbar hidden and a transparent default-background, with pdmenu using an
alternate background color for the actual menu.  The popup konsole is then
invoked with --hide-tabbar and --hide-menubar to eliminate them, and I have a
window rule setup to eliminate the windeco/titlebar/borders and set the initial
window placement "under mouse".

That works as intended, the appearance is as if it's a bare (if somewhat
squarish, no rounded-corners on the per-character background) popup menu, with
one exception -- konsole's toolbar.

Unfortunately the toolbar setting isn't per-profile so I can't set it there,
tho that'd be a different bug (which I can file if you like).  Fortunately I
don't want a toolbar in any of my profiles so that's not a problem affecting
me, I can just turn it off everywhere.

What does affect me is again a different bug (which I plan on filing but I'm
doing this one first), that konsole has repeatedly lost its no-toolbar setting.
 I suspect what is likely making that more frequent here is the frequency with
which I launch konsole windows, often multiple times within a few seconds as I
recurse down my menu tree, launching new konsole windows for each level of the
tree as the window for the level above closes, so it's quite possible there's
read/write racing going on with the previous window closing and writing state
while the new window opens at the same time.

But that's a different bug.

The (wishlist) bug here is simple.  With a --hide-toolbar option to match the
already existing --hide-tabbar and --hide-menubar options I could just set that
either in individual scripts or in a ~/bin/konsole wrapper script and wouldn't
have to worry about whether konsolerc retains my toolbar prefs or not.

I guess a --hide-scrollbar option might be useful for some as well.  Tho I've
not had problems with it, the per-profile setting is enough for me and unlike
the toolbars setting, the scrollbars setting doesn't appear to get lost (maybe
/because/ it's per-profile?).  But I could file a separate wishlist-bug for
that too, if you like.

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

[muon] [Bug 390476] Muon rebuilds search index very often and inefficient

2020-12-04 Thread Stefan Zurucker
https://bugs.kde.org/show_bug.cgi?id=390476

Stefan Zurucker  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDSINFO   |REPORTED
 Resolution|WAITINGFORINFO  |---

--- Comment #6 from Stefan Zurucker  ---
Contrary to earlier experiences, I do not see this behaviour anymore with Muon
5.8.0 under KDE Neon 5.19.4 (based on Ubuntu 18.04) and 5.20.4 (based on Ubuntu
20.04).

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

[kdenlive] [Bug 430031] New: minimum video speed bug

2020-12-04 Thread ItzSelenux
https://bugs.kde.org/show_bug.cgi?id=430031

Bug ID: 430031
   Summary: minimum video speed bug
   Product: kdenlive
   Version: 20.08.3
  Platform: Manjaro
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: Effects & Transitions
  Assignee: vpi...@kde.org
  Reporter: itzselenux...@gmail.com
  Target Milestone: ---

when i configure the speed fo a clip (140% for example) and i wish a more low
speed this does not allow me to slow down the clip telling me that the minimum
is 140%

STEPS TO REPRODUCE
1. change clip speed
2. try to set a lower speed than the one previously established

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

[digikam] [Bug 429103] Digikam 7.1.0 does not start up, when using macos big sur

2020-12-04 Thread Cristofoto
https://bugs.kde.org/show_bug.cgi?id=429103

--- Comment #23 from Cristofoto  ---
yess cool hope this work without problem !

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

[digikam] [Bug 429103] Digikam 7.1.0 does not start up, when using macos big sur

2020-12-04 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=429103

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

   What|Removed |Added

Version|7.1.0   |7.2.0
 Status|REPORTED|CONFIRMED
 Ever confirmed|0   |1

--- Comment #22 from caulier.gil...@gmail.com ---
I recieve the new MacBook Pro mid 2015, installed BigSur and XCode, and start
to patch code to compile with this MacOS version.

For the moment, all progress well, please wait...

Gilles Caulier

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

[systemsettings] [Bug 430029] Touchpad not disabled with mouse plugged in until I click on Input Devices in system settings

2020-12-04 Thread Andrés B . S .
https://bugs.kde.org/show_bug.cgi?id=430029

Andrés B.S.  changed:

   What|Removed |Added

 CC||andresbs2...@protonmail.com

--- Comment #2 from Andrés B.S.  ---
I'm using Leap w/ KDE repos and Plasma 5.20.4.
For me, the touchpad does not disable at all when I plug-in my mouse.
Horizontal scrolling was not working for me, but deleting ~/.config/touchpadrc
fixed it... no luck with disabling the touchpad, though.

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

[ark] [Bug 389989] ARK Drag file out of compressed file under wayland

2020-12-04 Thread Nathan
https://bugs.kde.org/show_bug.cgi?id=389989

Nathan <2gd4...@gmail.com> changed:

   What|Removed |Added

 Resolution|WAITINGFORINFO  |FIXED

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

[ark] [Bug 389989] ARK Drag file out of compressed file under wayland

2020-12-04 Thread Nathan
https://bugs.kde.org/show_bug.cgi?id=389989

Nathan <2gd4...@gmail.com> changed:

   What|Removed |Added

 Status|NEEDSINFO   |RESOLVED

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

[ark] [Bug 389989] ARK Drag file out of compressed file under wayland

2020-12-04 Thread Nathan
https://bugs.kde.org/show_bug.cgi?id=389989

--- Comment #5 from Nathan <2gd4...@gmail.com> ---
Yes please mark as fixed as the issue is no longer present

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

[kate] [Bug 389091] incorrect rendering of a svg image

2020-12-04 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=389091

Bug Janitor Service  changed:

   What|Removed |Added

 Resolution|WAITINGFORINFO  |WORKSFORME
 Status|NEEDSINFO   |RESOLVED

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

[yakuake] [Bug 383880] Window coordinates is not remembered if window width is < 100%

2020-12-04 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=383880

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

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

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

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

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

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

[gwenview] [Bug 410814] gwenview crash

2020-12-04 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=410814

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

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

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

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

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

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

[yakuake] [Bug 428644] Yakuake with dark stripes on terminal area

2020-12-04 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=428644

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.

[dolphin] [Bug 397859] action specific sounds are prematurely terminated with closure of application

2020-12-04 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=397859

Bug Janitor Service  changed:

   What|Removed |Added

 Status|NEEDSINFO   |RESOLVED
 Resolution|WAITINGFORINFO  |WORKSFORME

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

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

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

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

[konsole] [Bug 400411] Konsoleprofile cannot change font

2020-12-04 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=400411

Bug Janitor Service  changed:

   What|Removed |Added

 Status|NEEDSINFO   |RESOLVED
 Resolution|WAITINGFORINFO  |WORKSFORME

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

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

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

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

[frameworks-qqc2-desktop-style] [Bug 426202] Settings App Crashed

2020-12-04 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=426202

Bug Janitor Service  changed:

   What|Removed |Added

 Status|NEEDSINFO   |RESOLVED
 Resolution|BACKTRACE   |WORKSFORME

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

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

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

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

[dolphin] [Bug 395226] Selecting a kioslave from the dropdown menu results in unnavigable folders

2020-12-04 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=395226

Bug Janitor Service  changed:

   What|Removed |Added

 Resolution|WAITINGFORINFO  |WORKSFORME
 Status|NEEDSINFO   |RESOLVED

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

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

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

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

[konsole] [Bug 397275] broken output while using ngrok

2020-12-04 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=397275

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.

[konsole] [Bug 396726] regressions for tabbar in master

2020-12-04 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=396726

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.

[konsole] [Bug 373714] Please make active / passive tab color configurable

2020-12-04 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=373714

Bug Janitor Service  changed:

   What|Removed |Added

 Resolution|WAITINGFORINFO  |WORKSFORME
 Status|NEEDSINFO   |RESOLVED

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

[konsole] [Bug 383690] window size only saved on primary screen

2020-12-04 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=383690

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.

[kate] [Bug 333203] Files are silently overridden when saving through FTP

2020-12-04 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=333203

Bug Janitor Service  changed:

   What|Removed |Added

 Status|NEEDSINFO   |RESOLVED
 Resolution|WAITINGFORINFO  |WORKSFORME

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

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

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

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

[ark] [Bug 389989] ARK Drag file out of compressed file under wayland

2020-12-04 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=389989

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

[plasmashell] [Bug 383423] crash akonadi

2020-12-04 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=383423

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

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

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

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

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

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

[okular] [Bug 396777] Error--Okular when boot to openSUSE 42.3

2020-12-04 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=396777

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

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

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

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

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

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

[kdeconnect] [Bug 382038] kdeconnect: update proxy setting when system setting changed

2020-12-04 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=382038

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

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

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

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

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

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

[systemsettings] [Bug 380907] custom key shortcuts: window-binding disappears

2020-12-04 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=380907

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

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

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

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

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

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

[plasma-nm] [Bug 407674] WIFI Takes Long to Connect After Login and Resume

2020-12-04 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=407674

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

[kdeconnect] [Bug 372167] File transfers show up in file system but music file do no show up in media library.

2020-12-04 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=372167

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

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

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

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

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

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

[systemsettings] [Bug 376437] Caps lock setting not applied after boot

2020-12-04 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=376437

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

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

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

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

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

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

[plasmashell] [Bug 385079] Odd crash when starting konsole from launcher

2020-12-04 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=385079

--- 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 387293] plasmashell crashes

2020-12-04 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=387293

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

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

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

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

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

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

[okular] [Bug 364676] Okular turns off/on HDMI external monitor

2020-12-04 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=364676

--- Comment #10 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 386593] USB Stick removal

2020-12-04 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=386593

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

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

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

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

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

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

[kdeconnect] [Bug 379616] Deadlock when using SFTP plugin

2020-12-04 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=379616

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

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

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

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

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

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

[plasmashell] [Bug 379440] plasmashell crashes repeatedly when there is a bus error

2020-12-04 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=379440

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

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

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

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

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

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

[okular] [Bug 350754] Epub, Txt backends don't copy last unicode character of line to clipboard

2020-12-04 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=350754

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

[okular] [Bug 272176] Document viewport height changes can cause disproportionally large jumps in scroll position

2020-12-04 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=272176

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

[systemsettings] [Bug 341622] Shortcut for single keyboard layout is lost

2020-12-04 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=341622

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

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

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

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

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

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

[okular] [Bug 181559] Problems with highlighting equations

2020-12-04 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=181559

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

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

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

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

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

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

[okular] [Bug 167232] Resizing the main window changes the currently displayed page of a pdf document

2020-12-04 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=167232

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

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

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

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

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

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

[gwenview] [Bug 267584] JPEG pictures scaled smoothly while PNGs show pixelation

2020-12-04 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=267584

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

[kwin] [Bug 430010] Desktop freeze after resume from Screen Energy Saving.

2020-12-04 Thread Vladimir
https://bugs.kde.org/show_bug.cgi?id=430010

Vladimir  changed:

   What|Removed |Added

 CC||dv...@yandex.ru

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

[systemsettings] [Bug 429759] A check box in the mouse settings that enables smooth autoscroll

2020-12-04 Thread Toadfield
https://bugs.kde.org/show_bug.cgi?id=429759

--- Comment #8 from Toadfield  ---
I remember digging in some forums and enabling some settings in xinput and the
autoscrolling worked for every programs.
Maybe I understood those autoscroll methods you provided wrong and the thing I
did was another scrolling method,later I can post what I did in xinput and you
can look at it.

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

[systemsettings] [Bug 430029] Touchpad not disabled with mouse plugged in until I click on Input Devices in system settings

2020-12-04 Thread jonzn4suse
https://bugs.kde.org/show_bug.cgi?id=430029

jonzn4suse  changed:

   What|Removed |Added

Summary|Touchpad works with mouse   |Touchpad not disabled with
   |plugged in until I click on |mouse plugged in until I
   |Input Devices in system |click on Input Devices in
   |settings|system settings

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

[systemsettings] [Bug 430029] Touchpad works with mouse plugged in until I click on Input Devices in system settings

2020-12-04 Thread jonzn4suse
https://bugs.kde.org/show_bug.cgi?id=430029

--- Comment #1 from jonzn4suse  ---
Created attachment 133885
  --> https://bugs.kde.org/attachment.cgi?id=133885=edit
Now the Touchpad is disabled after clicking on "Input Devices" in system
settings

Now the Touchpad is disabled after clicking on "Input Devices" in system
settings

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

[dolphin] [Bug 430030] New: Dolphin appends extra file to a selection

2020-12-04 Thread Scott
https://bugs.kde.org/show_bug.cgi?id=430030

Bug ID: 430030
   Summary: Dolphin appends extra file to a selection
   Product: dolphin
   Version: 20.08.2
  Platform: Ubuntu Packages
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: dolphin-bugs-n...@kde.org
  Reporter: shagooser...@gmail.com
CC: kfm-de...@kde.org
  Target Milestone: ---

SUMMARY
Dolphin is automatically selecting a (related) file when another file is
selected.

STEPS TO REPRODUCE
In my usage scenario what I am doing is combining a number of wav files into a
dts file and then muxing the resulting dts file with a video file, typically a
h264 file to create an m2ts file. After completing this operation I spot check
the m2ts file for completeness before moving it to a separate storage folder.
After this I delete all of the component files that are either direct or
indirect components of the m2ts file, all of which are in different folders
under a common higher level folder.

When I select some of these component files to delete Dolphin is also selecting
the finished file so when I press delete the finished file is scheduled for
deletion as well as the selected file(s). There is an element of randomness
here, it does not every time although most times and it seems not to matter
which component files I select.

OBSERVED RESULT
By selecting one or more files in a directory Dolphin also appends another
recently used file in another directory. So without carefully checking the
delete list I end up deleting my finished work.

EXPECTED RESULT
That only the files I click on are selected.

SOFTWARE/OS VERSIONS
Operating System: Kubuntu 20.10
KDE Plasma Version: 5.19.5
KDE Frameworks Version: 5.74.0
Qt Version: 5.14.2
Kernel Version: 5.8.0-32-generic
OS Type: 64-bit
Processors: 16 × AMD Ryzen 7 3700X 8-Core Processor
Memory: 15.6 GiB of RAM
Graphics Processor: GeForce GTX 1080/PCIe/SSE2 

ADDITIONAL INFORMATION
Is a recent occurrence, not seen prior to updates since about 25/11/20.

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

[systemsettings] [Bug 430029] New: Touchpad works with mouse plugged in until I click on Input Devices in system settings

2020-12-04 Thread jonzn4suse
https://bugs.kde.org/show_bug.cgi?id=430029

Bug ID: 430029
   Summary: Touchpad works with mouse plugged in until I click on
Input Devices in system settings
   Product: systemsettings
   Version: 5.20.4
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: kcm_mouse
  Assignee: plasma-b...@kde.org
  Reporter: jonzn4s...@hotmail.com
  Target Milestone: ---

Created attachment 133884
  --> https://bugs.kde.org/attachment.cgi?id=133884=edit
Mouse is always used

SUMMARY
The touchpad works until I click on "Input Devices" in system setting.  I then
get a notification that the "Touchpad was disabled because a mouse was plugged
in" even though it was plugged in from boot up.

STEPS TO REPRODUCE
1. After logging in, I verify that the touchpad is still working with a mouse
plugged in 
2. Then click on "Input Devices" in system setting
3. I then get a notification that the "Touchpad was disabled because a mouse
was plugged in" even though it was plugged in from boot up

OBSERVED RESULT
The touchpad is still working despite a mouse plugged in and the system is set
to disable touchpad when mouse is plugged in. 

EXPECTED RESULT
The touchpad should not work when a mouse is plugged in.

SOFTWARE/OS VERSIONS:
Operating System: openSUSE Tumbleweed 20201203
KDE Plasma Version: 5.20.4
KDE Frameworks Version: 5.76.0
Qt Version: 5.15.2
Kernel Version: 5.9.11-1-default
OS Type: 64-bit
Processors: 8 × Intel® Core™ i7-4810MQ CPU @ 2.80GHz
Memory: 31.0 GiB of RAM
Graphics Processor: Mesa DRI Intel® HD Graphics 4600

ADDITIONAL INFORMATION

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

[kwin] [Bug 430028] New: kwin_x11 abort(), probably related to clicking on titlebar menu icon of window moments before application withdrew or destroyed it

2020-12-04 Thread Bill Crawford
https://bugs.kde.org/show_bug.cgi?id=430028

Bug ID: 430028
   Summary: kwin_x11 abort(), probably related to clicking on
titlebar menu icon of window moments before
application withdrew or destroyed it
   Product: kwin
   Version: 5.18.5
  Platform: Fedora RPMs
OS: Linux
Status: REPORTED
  Keywords: drkonqi
  Severity: crash
  Priority: NOR
 Component: general
  Assignee: kwin-bugs-n...@kde.org
  Reporter: billcrawford1...@gmail.com
  Target Milestone: ---

Application: kwin_x11 (5.18.5)

Qt Version: 5.14.2
Frameworks Version: 5.75.0
Operating System: Linux 5.8.11-200.fc32.x86_64 x86_64
Windowing system: X11
Distribution: "Fedora release 32 (Thirty Two)"

-- Information about the crash:
- What I was doing when the application crashed:

Clicking on the "system menu" button (application icon) on the titlebar to move
a window to another desktop. The window disappeared (closed by the application
itself) while I was attempting this. Cannot be absolutely certain of the order
of events.

- Custom settings of the application:

Compositor enabled, OpenGL 3.1 backend.
Window decorations using Plastik theme. I believe this is also as shipped with
distro, how can I check?
Hardware is Radeon RX580, distro standard mesa libraries and drivers, etc. *

* I do not believe this is hardware-related -- backtrace looks like a simple
(haha) concurrency issue.

-- Backtrace:
Application: KWin (kwin_x11), signal: Aborted
Using host libthread_db library "/lib64/libthread_db.so.1".
[Current thread is 1 (Thread 0x7f57d787b900 (LWP 1611))]

Thread 62 (Thread 0x7f5617fff700 (LWP 34500)):
#0  0x7f57dc766e92 in pthread_cond_wait@@GLIBC_2.3.2 () at
/lib64/libpthread.so.0
#1  0x7f57aeeb420b in util_queue_thread_func () at
/usr/lib64/dri/radeonsi_dri.so
#2  0x7f57aeeb3ccb in impl_thrd_routine () at
/usr/lib64/dri/radeonsi_dri.so
#3  0x7f57dc760432 in start_thread () at /lib64/libpthread.so.0
#4  0x7f57de85c913 in clone () at /lib64/libc.so.6

Thread 61 (Thread 0x7f563971a700 (LWP 34162)):
#0  0x7f57dc766e92 in pthread_cond_wait@@GLIBC_2.3.2 () at
/lib64/libpthread.so.0
#1  0x7f57aeeb420b in util_queue_thread_func () at
/usr/lib64/dri/radeonsi_dri.so
#2  0x7f57aeeb3ccb in impl_thrd_routine () at
/usr/lib64/dri/radeonsi_dri.so
#3  0x7f57dc760432 in start_thread () at /lib64/libpthread.so.0
#4  0x7f57de85c913 in clone () at /lib64/libc.so.6

Thread 60 (Thread 0x7f56c3063700 (LWP 34121)):
#0  0x7f57dc766e92 in pthread_cond_wait@@GLIBC_2.3.2 () at
/lib64/libpthread.so.0
#1  0x7f57aeeb420b in util_queue_thread_func () at
/usr/lib64/dri/radeonsi_dri.so
#2  0x7f57aeeb3ccb in impl_thrd_routine () at
/usr/lib64/dri/radeonsi_dri.so
#3  0x7f57dc760432 in start_thread () at /lib64/libpthread.so.0
#4  0x7f57de85c913 in clone () at /lib64/libc.so.6

Thread 59 (Thread 0x7f562a78d700 (LWP 32432)):
#0  0x7f57dc766e92 in pthread_cond_wait@@GLIBC_2.3.2 () at
/lib64/libpthread.so.0
#1  0x7f57aeeb420b in util_queue_thread_func () at
/usr/lib64/dri/radeonsi_dri.so
#2  0x7f57aeeb3ccb in impl_thrd_routine () at
/usr/lib64/dri/radeonsi_dri.so
#3  0x7f57dc760432 in start_thread () at /lib64/libpthread.so.0
#4  0x7f57de85c913 in clone () at /lib64/libc.so.6

Thread 58 (Thread 0x7f5774ff9700 (LWP 32391)):
#0  0x7f57dc766e92 in pthread_cond_wait@@GLIBC_2.3.2 () at
/lib64/libpthread.so.0
#1  0x7f57aeeb420b in util_queue_thread_func () at
/usr/lib64/dri/radeonsi_dri.so
#2  0x7f57aeeb3ccb in impl_thrd_routine () at
/usr/lib64/dri/radeonsi_dri.so
#3  0x7f57dc760432 in start_thread () at /lib64/libpthread.so.0
#4  0x7f57de85c913 in clone () at /lib64/libc.so.6

Thread 57 (Thread 0x7f5686029700 (LWP 32089)):
#0  0x7f57dc766e92 in pthread_cond_wait@@GLIBC_2.3.2 () at
/lib64/libpthread.so.0
#1  0x7f57aeeb420b in util_queue_thread_func () at
/usr/lib64/dri/radeonsi_dri.so
#2  0x7f57aeeb3ccb in impl_thrd_routine () at
/usr/lib64/dri/radeonsi_dri.so
#3  0x7f57dc760432 in start_thread () at /lib64/libpthread.so.0
#4  0x7f57de85c913 in clone () at /lib64/libc.so.6

Thread 56 (Thread 0x7f5685428700 (LWP 32088)):
#0  0x7f57de851bae in ppoll () at /lib64/libc.so.6
#1  0x7f57dd330e49 in ppoll (__ss=, __timeout=, __nfds=, __fds=) at
/usr/include/bits/poll2.h:77
#2  qt_ppoll (timeout_ts=0x0, nfds=1, fds=0x55a15e05f938) at
kernel/qcore_unix.cpp:132
#3  qt_ppoll (timeout_ts=0x0, nfds=1, fds=0x55a15e05f938) at
kernel/qcore_unix.cpp:129
#4  qt_safe_poll(pollfd*, unsigned long, timespec const*) (fds=0x55a15e05f938,
nfds=1, timeout_ts=timeout_ts@entry=0x0) at kernel/qcore_unix.cpp:155
#5  0x7f57dd3321c3 in
QEventDispatcherUNIX::processEvents(QFlags)
(this=, flags=...) at
../../include/QtCore/../../src/corelib/tools/qarraydata.h:211
#6  0x7f57dd2e791b in
QEventLoop::exec(QFlags)

[muon] [Bug 428856] Muon search returns nothing in Kubuntu 20.10

2020-12-04 Thread Narut
https://bugs.kde.org/show_bug.cgi?id=428856

--- Comment #2 from Narut  ---
I tried for stuff like "llvm" and only one-letter search would return results. 
Search is working now, after I updated kubuntu. Looks like it has been fixed.

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

[telepathy] [Bug 372388] crash

2020-12-04 Thread Justin Zobel
https://bugs.kde.org/show_bug.cgi?id=372388

Justin Zobel  changed:

   What|Removed |Added

 Resolution|WAITINGFORINFO  |WORKSFORME
 Status|NEEDSINFO   |RESOLVED

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

[Skanlite] [Bug 425958] Invalid Argument

2020-12-04 Thread Hamidreza Jafari
https://bugs.kde.org/show_bug.cgi?id=425958

Hamidreza Jafari  changed:

   What|Removed |Added

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

--- Comment #8 from Hamidreza Jafari  ---
Dummy comment to change status to reported

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

[kwin] [Bug 425586] [Wayland] KDE does not detect a second monitor

2020-12-04 Thread Zamundaaa
https://bugs.kde.org/show_bug.cgi?id=425586

--- Comment #38 from Zamundaaa  ---
Okay, then do please do make a new bug report for multi-monitor with NVidia

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

[valgrind] [Bug 404076] s390x: z14 vector instructions not implemented

2020-12-04 Thread Mark Wielaard
https://bugs.kde.org/show_bug.cgi?id=404076

Mark Wielaard  changed:

   What|Removed |Added

 CC||m...@klomp.org

--- Comment #9 from Mark Wielaard  ---
To facilitate wider testing I have backported this patch to the Fedora 33 and
rawhide valgrind package. Things look good, but my own testing was done on a
setup that didn't have the (z14) vxe facility, so all I can personally conclude
is that it doesn't introduce any regressions.

https://bodhi.fedoraproject.org/updates/FEDORA-2020-62b0db3640

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

[Discover] [Bug 429959] Discover shows a tooltip when I hover over any part of the description page of an app

2020-12-04 Thread Aleix Pol
https://bugs.kde.org/show_bug.cgi?id=429959

Aleix Pol  changed:

   What|Removed |Added

  Latest Commit||d6a91cab1fab2f5ff423c344e0d
   ||dbc844e367b62
   Version Fixed In||5.21

--- Comment #2 from Aleix Pol  ---
Uh fixed it yesterday right before you submitted the bug ^^'

d6a91cab1fab2f5ff423c344e0ddbc844e367b62

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

[Discover] [Bug 429959] Discover shows a tooltip when I hover over any part of the description page of an app

2020-12-04 Thread Aleix Pol
https://bugs.kde.org/show_bug.cgi?id=429959

Aleix Pol  changed:

   What|Removed |Added

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

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

[muon] [Bug 429921] Muon Discover hangs on Update process without errors and ability to cancel

2020-12-04 Thread Aleix Pol
https://bugs.kde.org/show_bug.cgi?id=429921

--- Comment #3 from Aleix Pol  ---
Discover itself isn't doing the installing, it's PackageKit which is an
external daemon. You can get logs from packagekit using "pkmon".

It's a weird issue, apt-based systems are among the best tested.

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

[dolphin] [Bug 429113] Missing app shortcut Icons

2020-12-04 Thread agentxlax
https://bugs.kde.org/show_bug.cgi?id=429113

--- Comment #13 from agentxlax  ---
Update I believe that somehow in the process of fixing the icons somehow the
Flatpak system was broken. I noticed shortly after the 5.20.4 updates that I
had no Flatpak icons. Then I went to open an image and it open with Gwenview
instead of KolourPaint. I closed it, rightclicked the image, went to reassign
KolourPaint as the default and it was not listed. I then checked the apps menu
and not lisyted on there either, nor were any of my other Flatpaks. Attempted 4
different ways of adding them back and each time it would fail to launch the
program. The FlatPak shortcuts in my Shortcuts folder other than not having
their icons. I get the below when updating everything via Konsole using
Topgrade which updates the FlatPaks as well. Any suggestions On how to fix
this? thanks

Note that the directories 

'/var/lib/flatpak/exports/share'
'/home/alienprober/.local/share/flatpak/exports/share'

are not in the search path set by the XDG_DATA_DIRS environment variable, so
applications installed by Flatpak may not appear on your desktop until the
session is restarted.

Looking for updates…
Nothing to do.

Note that the directories 

'/var/lib/flatpak/exports/share'
'/home/alienprober/.local/share/flatpak/exports/share'

are not in the search path set by the XDG_DATA_DIRS environment variable, so
applications installed by Flatpak may not appear on your desktop until the
session is restarted.

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

[umbrello] [Bug 363582] It would be nice for XMI file to have stable format.

2020-12-04 Thread Oliver Kellogg
https://bugs.kde.org/show_bug.cgi?id=363582

--- Comment #29 from Oliver Kellogg  ---
Git commit b1a4f029a9f55a79d2b6ae1e3569cde493a8392e by Oliver Kellogg.
Committed on 13/11/2020 at 23:07.
Pushed by okellogg into branch 'master'.

umbrello/umlwidgets/regionwidget.cpp
- In function saveToXMI1 fix error on migrating from QDomDocument
  to QXmlStreamWriter.

umbrello/umlwidgets/umlwidget.cpp
- In function saveToXMI1 fix misleading comment about the placement
  of call from child classes.

M  +1-1umbrello/umlwidgets/regionwidget.cpp
M  +2-1umbrello/umlwidgets/umlwidget.cpp

https://invent.kde.org/sdk/umbrello/commit/b1a4f029a9f55a79d2b6ae1e3569cde493a8392e

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

[umbrello] [Bug 363582] It would be nice for XMI file to have stable format.

2020-12-04 Thread Oliver Kellogg
https://bugs.kde.org/show_bug.cgi?id=363582

--- Comment #27 from Oliver Kellogg  ---
Git commit 776c2eaa09b7fff83f901165d62c53f5d28711ab by Oliver Kellogg.
Committed on 08/11/2020 at 21:58.
Pushed by okellogg into branch 'master'.

Create branch work/363582-stable-xmi from master @ df0d454

- Arguments of functions saveToXMI1 and save1 are changed from
QDomDocument& doc, QDomElement& elem
  to
QXmlStreamWriter& writer
- Basic load/save are working but more testing is needed.
  In particular, drag, cut/copy/paste, and undo/redo need testing.
- Unit tests are adapted and are passed.

M  +55   -48   umbrello/clipboard/umldragdata.cpp
M  +16   -6umbrello/cmds/cmdremovediagram.cpp
M  +28   -6umbrello/cmds/widget/cmdcreatewidget.cpp
M  +49   -8umbrello/cmds/widget/cmdremovewidget.cpp
M  +11   -10   umbrello/codegenerators/classifiercodedocument.cpp
M  +2-2umbrello/codegenerators/classifiercodedocument.h
M  +9-8umbrello/codegenerators/codeaccessormethod.cpp
M  +3-2umbrello/codegenerators/codeaccessormethod.h
M  +7-7umbrello/codegenerators/codeblock.cpp
M  +2-2umbrello/codegenerators/codeblock.h
M  +12   -9umbrello/codegenerators/codeblockwithcomments.cpp
M  +2-2umbrello/codegenerators/codeblockwithcomments.h
M  +13   -12   umbrello/codegenerators/codeclassfield.cpp
M  +2-2umbrello/codegenerators/codeclassfield.h
M  +9-7umbrello/codegenerators/codeclassfielddeclarationblock.cpp
M  +2-2umbrello/codegenerators/codeclassfielddeclarationblock.h
M  +4-4umbrello/codegenerators/codecomment.cpp
M  +1-1umbrello/codegenerators/codecomment.h
M  +15   -14   umbrello/codegenerators/codedocument.cpp
M  +3-2umbrello/codegenerators/codedocument.h
M  +10   -9umbrello/codegenerators/codegenerator.cpp
M  +2-1umbrello/codegenerators/codegenerator.h
M  +7-4umbrello/codegenerators/codegenobjectwithtextblocks.cpp
M  +2-1umbrello/codegenerators/codegenobjectwithtextblocks.h
M  +7-5umbrello/codegenerators/codemethodblock.cpp
M  +2-1umbrello/codegenerators/codemethodblock.h
M  +9-6umbrello/codegenerators/codeoperation.cpp
M  +2-2umbrello/codegenerators/codeoperation.h
M  +11   -8umbrello/codegenerators/codeparameter.cpp
M  +2-1umbrello/codegenerators/codeparameter.h
M  +4-4umbrello/codegenerators/cpp/cppcodecomment.cpp
M  +1-1umbrello/codegenerators/cpp/cppcodecomment.h
M  +4-4umbrello/codegenerators/cpp/cppcodedocumentation.cpp
M  +1-1umbrello/codegenerators/cpp/cppcodedocumentation.h
M  +6-6umbrello/codegenerators/cpp/cppcodegenerator.cpp
M  +1-1umbrello/codegenerators/cpp/cppcodegenerator.h
M  +4-4umbrello/codegenerators/cpp/cppheaderclassdeclarationblock.cpp
M  +1-1umbrello/codegenerators/cpp/cppheaderclassdeclarationblock.h
M  +4-4umbrello/codegenerators/cpp/cppheadercodedocument.cpp
M  +1-1umbrello/codegenerators/cpp/cppheadercodedocument.h
M  +4-4umbrello/codegenerators/d/dclassdeclarationblock.cpp
M  +1-1umbrello/codegenerators/d/dclassdeclarationblock.h
M  +5-2umbrello/codegenerators/d/dcodeaccessormethod.cpp
M  +1-1umbrello/codegenerators/d/dcodeaccessormethod.h
M  +4-4umbrello/codegenerators/d/dcodecomment.cpp
M  +1-1umbrello/codegenerators/d/dcodecomment.h
M  +4-4umbrello/codegenerators/d/dcodedocumentation.cpp
M  +1-1umbrello/codegenerators/d/dcodedocumentation.h
M  +12   -9umbrello/codegenerators/hierarchicalcodeblock.cpp
M  +4-2umbrello/codegenerators/hierarchicalcodeblock.h
M  +7-6umbrello/codegenerators/java/javaantcodedocument.cpp
M  +3-2umbrello/codegenerators/java/javaantcodedocument.h
M  +4-4umbrello/codegenerators/java/javaclassdeclarationblock.cpp
M  +1-1umbrello/codegenerators/java/javaclassdeclarationblock.h
M  +5-2umbrello/codegenerators/java/javacodeaccessormethod.cpp
M  +1-1umbrello/codegenerators/java/javacodeaccessormethod.h
M  +4-4umbrello/codegenerators/java/javacodedocumentation.cpp
M  +1-1umbrello/codegenerators/java/javacodedocumentation.h
M  +7-4umbrello/codegenerators/ownedcodeblock.cpp
M  +2-1umbrello/codegenerators/ownedcodeblock.h
M  +5-5umbrello/codegenerators/ownedhierarchicalcodeblock.cpp
M  +2-2umbrello/codegenerators/ownedhierarchicalcodeblock.h
M  +4-4umbrello/codegenerators/ruby/rubyclassdeclarationblock.cpp
M  +1-1umbrello/codegenerators/ruby/rubyclassdeclarationblock.h
M  +3-2umbrello/codegenerators/ruby/rubycodeaccessormethod.cpp
M  +1-1umbrello/codegenerators/ruby/rubycodeaccessormethod.h
M  +4-4umbrello/codegenerators/ruby/rubycodedocumentation.cpp
M  +1-1umbrello/codegenerators/ruby/rubycodedocumentation.h
M  +6-8umbrello/codegenerators/textblock.cpp
M  +4-2

[umbrello] [Bug 363582] It would be nice for XMI file to have stable format.

2020-12-04 Thread Oliver Kellogg
https://bugs.kde.org/show_bug.cgi?id=363582

--- Comment #26 from Oliver Kellogg  ---
Git commit 3d17c9692c7466fd7e0d3bc6d4aac2a888d9f685 by Oliver Kellogg.
Committed on 22/11/2020 at 15:33.
Pushed by okellogg into branch 'master'.

https://invent.kde.org/sdk/umbrello/-/merge_requests/17#note_140469
On saving  avoid empty 

umbrello/uml1model/operation.cpp
- In function saveToXMI1, before calling writer.writeStartElement for
  "UML:BehavioralFeature.parameter", if m_pSecondary is null and m_List
  is empty then write  closing element and return.

M  +4-0umbrello/uml1model/operation.cpp

https://invent.kde.org/sdk/umbrello/commit/3d17c9692c7466fd7e0d3bc6d4aac2a888d9f685

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

[umbrello] [Bug 363582] It would be nice for XMI file to have stable format.

2020-12-04 Thread Oliver Kellogg
https://bugs.kde.org/show_bug.cgi?id=363582

--- Comment #28 from Oliver Kellogg  ---
Git commit 74abf217331b4ce7b745f5ec0ba3453f7809ffc7 by Oliver Kellogg.
Committed on 13/11/2020 at 20:48.
Pushed by okellogg into branch 'master'.

Followup to commit 776c2ea : Various fixes for writing of XMI

umbrello/umldoc.cpp
- In function saveToXMI1 reenable call to UMLListView::saveToXMI1 and
  CodeGenerator::saveToXMI1.

umbrello/uml1model/classifier.cpp
- In function saveToXMI1, avoid writing the 
  element if both attList and opList are empty.

umbrello/umlwidgets/associationwidgetrole.{h,cpp}
- At function saveToXMI1 remove argument 'suffix'.

umbrello/umlwidgets/associationwidgetrole.cpp
- In function saveToXMI1 remove writing of attributes index[ab] and
  totalcount[ab].
  Writing of attributes shall not be mixed with writing the subelements
  multiplicityWidget/roleWidget/changeabilityWidget because
  attributes may not follow subelements (in particular, attributes of
  role B may not follow subelements of role A).

umbrello/umlwidgets/associationwidget.cpp
- In function saveToXMI1:
  - Postpone saving of m_nameWidget and m_associationLine until after
all attributes have been written.
Reason: Subelements may not precede attributes.
  - Save attributes of m_role[A] and m_role[B].  Reason: Their saving
has been removed from AssociationWidgetRole::saveToXMI1.

M  +13   -11   umbrello/uml1model/classifier.cpp
M  +2-2umbrello/umldoc.cpp
M  +21   -8umbrello/umlwidgets/associationwidget.cpp
M  +4-4umbrello/umlwidgets/associationwidgetrole.cpp
M  +1-1umbrello/umlwidgets/associationwidgetrole.h

https://invent.kde.org/sdk/umbrello/commit/74abf217331b4ce7b745f5ec0ba3453f7809ffc7

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

[umbrello] [Bug 363582] It would be nice for XMI file to have stable format.

2020-12-04 Thread Oliver Kellogg
https://bugs.kde.org/show_bug.cgi?id=363582

--- Comment #25 from Oliver Kellogg  ---
Git commit cbb0c90c5938f650cb91c4be709165378733e6ce by Oliver Kellogg.
Committed on 09/11/2020 at 22:37.
Pushed by okellogg into branch 'master'.

umbrello/version.h
- Increase XMI_FILE_VERSION to "1.6.20" due to reordering of XML
  attributes.

M  +1-1umbrello/version.h

https://invent.kde.org/sdk/umbrello/commit/cbb0c90c5938f650cb91c4be709165378733e6ce

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

[plasmashell] [Bug 430020] 4k (on Xorg) + dual screen + Flameshot screenshot breaks and shifts Plasma desktop to the left

2020-12-04 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=430020

jonathan.lu...@posteo.de changed:

   What|Removed |Added

Summary|4k (Xserver) + dual screen  |4k (on Xorg) + dual screen
   |+ Flameshot screenshot  |+ Flameshot screenshot
   |breaks and shifts Plasma|breaks and shifts Plasma
   |desktop to the left |desktop to the left

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

[frameworks-kio] [Bug 430027] New: Create New Folder dialog: disabling OK button after every keypress not a good UX

2020-12-04 Thread Frank Steinmetzger
https://bugs.kde.org/show_bug.cgi?id=430027

Bug ID: 430027
   Summary: Create New Folder dialog: disabling OK button after
every keypress not a good UX
   Product: frameworks-kio
   Version: 5.76.0
  Platform: Archlinux Packages
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: kio-bugs-n...@kde.org
  Reporter: war...@gmx.de
CC: kdelibs-b...@kde.org
  Target Milestone: ---

SUMMARY

I noticed a new behaviour in Dolphin which does not agree with fast typists.
After every keypress in the name field, the OK button is disabled for a short
moment. In the release notes for Frameworks 5.76.0 I found:
“KNewFileMenu: check file does not already exists with delay for improved
usability”

I regularly create temporary folders like "tmp", "asd", "foo" or even
single-lettered names. Typing those, including Enter, is etched into muscle
memory. So in my case, usability has worsened because I need to wait for the
delay to elapse. :)

May I ask for the initial disabling to be postponed until after the existence
check is done? When the submit action is triggered, the directory might have
been created by another process in the meantime, so the check would have to be
done again on triggering OK, anyway:
1. Enter a directory name
2. The directory is created externally
3. Click OK
4. The dialog closes and Dolphin shows an “already exists” error at the top

The constant disabling/enabling also creates visual clutter and might make the
user even think that the computer is busy after every keypress.

Thanks for your consideration.

SOFTWARE/OS VERSIONS
Linux/KDE Plasma: Arch Linux
KDE Plasma Version: 5.20.3
KDE Frameworks Version: 5.76.0
Qt Version: 5.12.2

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

[plasmashell] [Bug 430026] New: System Tray no longer closes when clearing notification history

2020-12-04 Thread Kai Uwe Broulik
https://bugs.kde.org/show_bug.cgi?id=430026

Bug ID: 430026
   Summary: System Tray no longer closes when clearing
notification history
   Product: plasmashell
   Version: master
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: System Tray
  Assignee: plasma-b...@kde.org
  Reporter: k...@privat.broulik.de
  Target Milestone: 1.0

Clearing notification history no longer closes System Tray popup

STEPS TO REPRODUCE
1. notify-send foo bar -h string:desktop-entry:firefox
2. Open notification popup
3. Close notification from history so that it is empty

OBSERVED RESULT
Notification is removed, notification list is empty, popup remains open

EXPECTED RESULT
Popup closes

SOFTWARE/OS VERSIONS
KDE Plasma Version: 5.20.80 master as of 2020-12-01
KDE Frameworks Version: 5.77
Qt Version: 5.15.1

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

[krita] [Bug 430025] blinks and turns black every time I use the cursor in the program

2020-12-04 Thread Boudewijn Rempt
https://bugs.kde.org/show_bug.cgi?id=430025

Boudewijn Rempt  changed:

   What|Removed |Added

 Resolution|--- |WAITINGFORINFO
 CC||b...@valdyas.org
 Status|REPORTED|NEEDSINFO

--- Comment #1 from Boudewijn Rempt  ---
Hi Carolina,

Obviously, this isn't something that happens for everyone. It's not a bug
that's experienced by the two or three million of other Krita users, so it must
be something specific to your system; most probably your gpu and gpu driver
combination.

And since you're not giving any information, as provided in Help->System
Information for Bug Reports, we cannot begin to guess what might be up. Try to
check whether your system is up to date, make sure you're not using an obsolete
version of Windows like Windows 7, whether switching the GPU renderer in
Krita's settings (as explained in the manual) makes a difference.

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

[krita] [Bug 430025] New: blinks and turns black every time I use the cursor in the program

2020-12-04 Thread carolina
https://bugs.kde.org/show_bug.cgi?id=430025

Bug ID: 430025
   Summary: blinks and turns black every time I use the cursor in
the program
   Product: krita
   Version: 4.4.1
  Platform: Microsoft Windows
OS: Microsoft Windows
Status: REPORTED
  Severity: crash
  Priority: NOR
 Component: General
  Assignee: krita-bugs-n...@kde.org
  Reporter: mktproduc...@gmail.com
  Target Milestone: ---

SUMMARY


STEPS TO REPRODUCE
1. 
2. 
3. 

OBSERVED RESULT


EXPECTED RESULT


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

ADDITIONAL INFORMATION
blinks and turns black every time I use the cursor in the program

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

[plasmashell] [Bug 396493] Plasmashell sometimes starts with 3/4ths of the screen black

2020-12-04 Thread Justin Zobel
https://bugs.kde.org/show_bug.cgi?id=396493

Justin Zobel  changed:

   What|Removed |Added

 Resolution|WAITINGFORINFO  |WORKSFORME
 Status|NEEDSINFO   |RESOLVED

--- Comment #5 from Justin Zobel  ---
Thanks for the update David. I'm going to mark this as resolved for now. If you
swap hardware again in the future and the issue is present please reopen this
report.

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

[konsole] [Bug 429024] Konsole cutting off bashrc messages when opening a new window

2020-12-04 Thread Justin Zobel
https://bugs.kde.org/show_bug.cgi?id=429024

Justin Zobel  changed:

   What|Removed |Added

   Assignee|konsole-de...@kde.org   |tcanabr...@kde.org
 Ever confirmed|0   |1
 Status|REPORTED|ASSIGNED

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

[konsole] [Bug 373440] konsole --new-tab opens window instead

2020-12-04 Thread Dušan Dragić
https://bugs.kde.org/show_bug.cgi?id=373440

Dušan Dragić  changed:

   What|Removed |Added

 CC||dragic.du...@gmail.com

--- Comment #39 from Dušan Dragić  ---
(In reply to Justin Zobel from comment #35)
> Can someone please test and confirm if this issue is still occurring or if
> this bug report can be marked as resolved. I'm setting status to "needsinfo"
> pending your response, please change back to "reported" or "resolved" when
> you respond, thanks.

I just updated to 20.08.3 on Fedora 32 and can confirm the same behaviour as
noted by two previous comments. The only workaround now is to enable "Run all
konsole windows in a single process", without it --new-tab doesn't work at all
for me.

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

[kwebkitpart] [Bug 317475] Konqueror segfault opening link in new tab

2020-12-04 Thread Justin Zobel
https://bugs.kde.org/show_bug.cgi?id=317475

--- Comment #75 from Justin Zobel  ---
(In reply to jgrisetti from comment #74)
> Created attachment 133876 [details]
> attachment-13291-0.html
> 
> Since this is so old, why is it still active?
> Close the bloody ticket!
> jdg

Some bugs can last for many years without fixes as developer time is often
stretched between many projects.

I'm not sure users would like it if we just closed their tickets as they were
old if the issue still existed.

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

[marble] [Bug 362429] crash when tick satellites in satellite configure window

2020-12-04 Thread Justin Zobel
https://bugs.kde.org/show_bug.cgi?id=362429

Justin Zobel  changed:

   What|Removed |Added

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

--- Comment #3 from Justin Zobel  ---
Steps to reproduce provided, changing status for investigation.

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

[Skanlite] [Bug 425958] Invalid Argument

2020-12-04 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=425958

--- Comment #7 from Nate Graham  ---
So it's working now?

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

[plasmashell] [Bug 424408] Multiple coredumps with every login/logout

2020-12-04 Thread Bruno Filipe
https://bugs.kde.org/show_bug.cgi?id=424408

--- Comment #36 from Bruno Filipe  ---
I tested a clean install of Fedora KDE spin and it's reproduceable OOTB, both
before and after full system upgrades. This breaks multi-user desktops and
should be looked at with higher priority.

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

[Skanlite] [Bug 425958] Invalid Argument

2020-12-04 Thread Hamidreza Jafari
https://bugs.kde.org/show_bug.cgi?id=425958

--- Comment #6 from Hamidreza Jafari  ---
It is now possible to scan full flatbed i.e. A3 with one of the found devices.
Actually as mentioned by one of the maintainers one actual device is viewed by
two different protocols each with different capabilities.

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

[konversation] [Bug 391698] Command line arguments ignored

2020-12-04 Thread Friedrich W. H. Kossebau
https://bugs.kde.org/show_bug.cgi?id=391698

Friedrich W. H. Kossebau  changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
  Latest Commit||https://invent.kde.org/netw
   ||ork/konversation/commit/ea4
   ||84d1b6042c593c3da247a2449f2
   ||ad9e37c629
 Resolution|--- |FIXED

--- Comment #4 from Friedrich W. H. Kossebau  ---
Git commit ea484d1b6042c593c3da247a2449f2ad9e37c629 by Friedrich W. H.
Kossebau.
Committed on 04/12/2020 at 22:27.
Pushed by kossebau into branch 'release/20.12'.

Fix missed handling of a irc:// url cmdl arg on app start

Application::handleActivate() handles the arguments passed from the signal
KDBusService::activateRequested. The API dox of the signal tells:
"
The arguments the executable was called with, starting with the
executable file name. See QCoreApplication::arguments().
This can also be empty.
"
267e3762ad9f151539fd7dda2a83bdcbc60103c5 tried to handle the case of
no args passed, which though created bug 374690, which then got treated
by 2605c61fcaec65f2223a8ad91c39005f09047642, which then created bug 391698.

Hopefully we end the chain here :)

M  +3-3src/application.cpp

https://invent.kde.org/network/konversation/commit/ea484d1b6042c593c3da247a2449f2ad9e37c629

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

[dolphin] [Bug 430024] Shortcuts can break git/svn integration functions

2020-12-04 Thread Brendon Higgins
https://bugs.kde.org/show_bug.cgi?id=430024

Brendon Higgins  changed:

   What|Removed |Added

   Platform|Debian stable   |Debian testing

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

[dolphin] [Bug 430024] New: Shortcuts can break git/svn integration functions

2020-12-04 Thread Brendon Higgins
https://bugs.kde.org/show_bug.cgi?id=430024

Bug ID: 430024
   Summary: Shortcuts can break git/svn integration functions
   Product: dolphin
   Version: 20.08.2
  Platform: Debian stable
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: dolphin-bugs-n...@kde.org
  Reporter: bren...@quantumfurball.net
CC: kfm-de...@kde.org
  Target Milestone: ---

SUMMARY

Suppose the user has a shortcut to a subfolder of a git or svn working copy. If
the user starts a fresh instance of Dolphin and then uses that shortcut to
navigate to that folder, it seems the git/svn integration fails not realise
this location is part of a working copy, and doesn't show status icons or
context menu options.

If the user navigates to a location where the git/svn root folder is present in
the path/breadcrumb widget (this might be as simple as going to the parent of
the shortcut folder), then it starts working. The user can then navigate back
to the shortcut location, either manually or by using the shortcut, and the
integration continues to work from then on.

It seems like the git/svn integration keeps track of which folders are known to
be working copies, but initially it only examines folders up to the
highest-level folder that is displayed in path/breadcrumb widget - not the root
of the filesystem. This fails in the above situation, where the shortcut name
is the highest-level folder shown on the widget, but on the actual filesystem
it exists below the root of the working copy.

I tested git and svn, but others might also be affected.

Best,
Brendon

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

[kget] [Bug 351952] Missing Comment in desktop file

2020-12-04 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=351952

vital.sy...@gmail.com changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|ASSIGNED|RESOLVED
  Latest Commit||https://invent.kde.org/netw
   ||ork/kget/commit/25b85839eb9
   ||ea6aa6c960a8387618ea010199b
   ||23

--- Comment #3 from vital.sy...@gmail.com ---
Git commit 25b85839eb9ea6aa6c960a8387618ea010199b23 by Yuri Vital.
Committed on 04/12/2020 at 14:56.
Pushed by meven into branch 'master'.

Add desktop file Comment entry

Comment entry is missing in desktop/org.kde.kget.desktop.cmake file

M  +1-0desktop/org.kde.kget.desktop.cmake

https://invent.kde.org/network/kget/commit/25b85839eb9ea6aa6c960a8387618ea010199b23

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

[dolphin] [Bug 430022] Safety feature: option to disable drag and drop

2020-12-04 Thread JanKusanagi
https://bugs.kde.org/show_bug.cgi?id=430022

--- Comment #5 from JanKusanagi  ---
(In reply to Germano Massullo from comment #0)
> It may increase safety for some users in operating
> with data storages

Older users for instance. I can already think of some.

But you'll need some so-called "UX experts" to vouch for this idea if you want
it implemented :p

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

[dolphin] [Bug 430022] Safety feature: option to disable drag and drop

2020-12-04 Thread JanKusanagi
https://bugs.kde.org/show_bug.cgi?id=430022

JanKusanagi  changed:

   What|Removed |Added

 CC||jan-b...@gmx.co.uk

--- Comment #4 from JanKusanagi  ---
Powerful from time to time...

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

[phonon-backend-gstreamer] [Bug 294006] Knotify always crashes when showing notifications [@ Phonon::Gstreamer::MediaNode::linkMediaNodeList]

2020-12-04 Thread Sabourin Gilles
https://bugs.kde.org/show_bug.cgi?id=294006

Sabourin Gilles  changed:

   What|Removed |Added

 CC|sabourin.gil...@gmail.com   |

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

[phonon-backend-gstreamer] [Bug 294006] Knotify always crashes when showing notifications [@ Phonon::Gstreamer::MediaNode::linkMediaNodeList]

2020-12-04 Thread aslam karachiwala
https://bugs.kde.org/show_bug.cgi?id=294006

aslam karachiwala <4s...@mythicflow.com> changed:

   What|Removed |Added

 CC|4s...@mythicflow.com|

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

[dolphin] [Bug 430022] Safety feature: option to disable drag and drop

2020-12-04 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=430022

Nate Graham  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
 Resolution|--- |INTENTIONAL

--- Comment #3 from Nate Graham  ---
I don't think we can do that, sorry. :) Drag-and-drop is a core part of the
user experience. The drag-and-drop menu is itself already a safety valve since
it requires a second explicit action to complete the drop. So disabling
drag-and-drop wouldn't really provide any additional safety over what we
already have.

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

[dolphin] [Bug 430022] Safety feature: option to disable drag and drop

2020-12-04 Thread Germano Massullo
https://bugs.kde.org/show_bug.cgi?id=430022

Germano Massullo  changed:

   What|Removed |Added

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

--- Comment #2 from Germano Massullo  ---
(In reply to Nate Graham from comment #1)
> You mean trying to drag an item would not cause it to move at all?

Exactly

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

[dolphin] [Bug 430022] Safety feature: option to disable drag and drop

2020-12-04 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=430022

Nate Graham  changed:

   What|Removed |Added

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

--- Comment #1 from Nate Graham  ---
Can you clarify what you mean by "completely disable drag and drop?" You mean
trying to drag an item would not cause it to move at all?

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

[dolphin] [Bug 430023] New: Add option to mount media in read-only mode

2020-12-04 Thread Daniel
https://bugs.kde.org/show_bug.cgi?id=430023

Bug ID: 430023
   Summary: Add option to mount media in read-only mode
   Product: dolphin
   Version: unspecified
  Platform: Archlinux Packages
OS: Linux
Status: REPORTED
  Severity: wishlist
  Priority: NOR
 Component: panels: places
  Assignee: dolphin-bugs-n...@kde.org
  Reporter: daniel-other+kde...@dadosch.de
CC: kfm-de...@kde.org
  Target Milestone: ---

SUMMARY
It is a common task to mount media in read-only mode, for example when trying
to rescue files or if you don't want to perform any write operation on it.

It would be sensible if dolphin had the option to mount a drive as read-only
(when it's not already mounted) because it would allow the end user to mount
their drives as read-only more easily than using the mount command manually.

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

[plasma4] [Bug 200847] Kde4 panel, crashed after clicking on the digital clock (QGraphicsItem::isWidget, [QGraphicsItem::isWindow], QGraphicsScene::event)

2020-12-04 Thread carolina
https://bugs.kde.org/show_bug.cgi?id=200847

carolina  changed:

   What|Removed |Added

 CC||mktproduc...@gmail.com

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

[dolphin] [Bug 430022] New: Safety feature: option to disable drag and drop

2020-12-04 Thread Germano Massullo
https://bugs.kde.org/show_bug.cgi?id=430022

Bug ID: 430022
   Summary: Safety feature: option to disable drag and drop
   Product: dolphin
   Version: unspecified
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: wishlist
  Priority: NOR
 Component: general
  Assignee: dolphin-bugs-n...@kde.org
  Reporter: germano.massu...@gmail.com
CC: kfm-de...@kde.org
  Target Milestone: ---

In Dolphin when you drag and drop a file or a folder, you will get a popup
asking for what you want to do, if move, copy or do nothing. I think it would
be nice to have an option in Dolphin preferences, to completely disable drag
and drop. It may increase safety for some users in operating with data storages

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

[kopete] [Bug 269826] Kopete crash when switching WiFi connections

2020-12-04 Thread markuss
https://bugs.kde.org/show_bug.cgi?id=269826

markuss  changed:

   What|Removed |Added

 Status|NEEDSINFO   |RESOLVED
 Resolution|WAITINGFORINFO  |UNMAINTAINED

--- Comment #2 from markuss  ---
I no longer use this unmaintained piece of software.

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

[valgrind] [Bug 417264] Musl issues: Fix none/tests/pth_atfork1.c

2020-12-04 Thread Paul Floyd
https://bugs.kde.org/show_bug.cgi?id=417264

Paul Floyd  changed:

   What|Removed |Added

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

--- Comment #2 from Paul Floyd  ---
This was fixed a while back

commit 702b1fe56f6dd61d0003457728702248f46c6dcc
Author: Aleksandar Rikalo 
Date:   Thu Apr 23 16:22:31 2020 +

Musl issues: Fix none/tests/pth_atfork1.c

There is no error.h on some systems.

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

[krita] [Bug 430021] New: problems with shortcuts working on a wacom tablet

2020-12-04 Thread konstrukto
https://bugs.kde.org/show_bug.cgi?id=430021

Bug ID: 430021
   Summary: problems with shortcuts working on a wacom tablet
   Product: krita
   Version: 4.4.1
  Platform: Microsoft Windows
OS: Microsoft Windows
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: Shortcuts and Canvas Input Settings
  Assignee: krita-bugs-n...@kde.org
  Reporter: konstrukt...@gmail.com
  Target Milestone: ---

Created attachment 133883
  --> https://bugs.kde.org/attachment.cgi?id=133883=edit
a screenshot of my pen bindings

SUMMARY

Shortcuts don't work properly on my Wacom Intuos BT M (CTL-6100WL).
The problem occurs on Krita 4.4.0 and 4.4.1, and is not present on 4.3.0.
Shortcut buttons on the tablet work as intended, shortcut buttons on the pen
have the issue.
Shortcuts on the keyboard work as intended.

I use two displays, but only display Krita on my first screen.
The monitors use different resolutions.

The problem occurs on any drawing of any size.


STEPS TO REPRODUCE
1. Install 4.4.0 or 4.4.1 and hook up the tablet
2. Try the pen buttons
3. Install 4.3.0
4. Try the pen buttons

OBSERVED RESULT

Assigning the 'P' shortcut for the color picker will result in showing the
color picker as well as the quick menu normally called with RMB.
Assigning brush size 'SHIFT+LMB' will result in the hand grabber normally
called with the spacebar.


EXPECTED RESULT

For the shortcuts assigned to the pen buttons to correspond with the shortcuts
on the keyboard.


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

ADDITIONAL INFORMATION

Posted on the krita-artists forum, unresolved, link available here:
https://krita-artists.org/t/problems-with-intuos-bt-m-express-keys/14205/6

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

[kwin] [Bug 425586] [Wayland] KDE does not detect a second monitor

2020-12-04 Thread Robert-André Mauchin
https://bugs.kde.org/show_bug.cgi?id=425586

--- Comment #37 from Robert-André Mauchin  ---
(In reply to Zamundaaa from comment #36)
> Yes it should but only with Noveau; the proprietary driver is still
> incapable of it. A developer from NVidia said that they are finally working
> on it but I have no idea when it will be ready.
> 
I've tried with Nouveau and my external screens are not detected either.

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

[plasmashell] [Bug 388477] Plasma crashes when activating the Application Launcher

2020-12-04 Thread Tristan Miller
https://bugs.kde.org/show_bug.cgi?id=388477

Tristan Miller  changed:

   What|Removed |Added

 Status|NEEDSINFO   |RESOLVED
 Resolution|WAITINGFORINFO  |WORKSFORME

--- Comment #11 from Tristan Miller  ---
I've no longer been able to reproduce this problem for a while now -- I'm
currently using Plasma 5.20.3.

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

[Oxygen] [Bug 429956] Widget Tooltip Text Missing Under Oxygen Theme

2020-12-04 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=429956

Nate Graham  changed:

   What|Removed |Added

 Resolution|WAITINGFORINFO  |---
   Assignee|unassigned-b...@kde.org |k...@davidedmundson.co.uk
 Status|NEEDSINFO   |REPORTED
  Component|style   |QtQuickControls

--- Comment #6 from Nate Graham  ---
Works for me with Breeze no matter what combination of plasma theme and app
color scheme I apply. I suspect an issue with the Oxygen Plasma theme.

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

[telepathy] [Bug 372388] crash

2020-12-04 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=372388

--- Comment #2 from luisghasafe...@hotmail.com ---
Resolved

De: Justin Zobel 
Enviado: venres, 4 de decembro de 2020 04:21
Para: luisghasafe...@hotmail.com 
Asunto: [telepathy] [Bug 372388] crash

https://bugs.kde.org/show_bug.cgi?id=372388

Justin Zobel  changed:

   What|Removed |Added

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

--- Comment #1 from Justin Zobel  ---
Thank you for the report.

As it has been a while since this was reported, can you please test and confirm
if this issue is still occurring or if this bug report can be marked as
resolved.

I have set the bug status to "needsinfo" pending your response, please change
back to "reported" or "resolved/worksforme" when you respond, thank you.

--
You are receiving this mail because:
You reported the bug.

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

  1   2   3   >