[plasmashell] [Bug 358930] moving the mouse over a different application icon immediately changes the window list

2023-02-08 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=358930

Bharadwaj Raju  changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
  Latest Commit||https://invent.kde.org/plas
   ||ma/plasma-desktop/-/commit/
   ||6b0dd6514faad6d0803dc0d58ed
   ||93d995b82c237
 Resolution|--- |FIXED
   Version Fixed In||5.27.1

--- Comment #50 from Bharadwaj Raju  ---
Fixed in master and 5.27 branch. I expect the fix will be there in the 5.27.1
release.

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

[plasmashell] [Bug 358930] moving the mouse over a different application icon immediately changes the window list

2023-02-07 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=358930

--- Comment #49 from Bharadwaj Raju  ---
At any rate, I believe I've solved those remaining problems as well, and we
should be closer to a merged solution.

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

[plasmashell] [Bug 358930] moving the mouse over a different application icon immediately changes the window list

2023-02-07 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=358930

--- Comment #48 from Bharadwaj Raju  ---
> Could you please explain this idea? I don't understand what "triangle mouse 
> filtering" _is_, but as a solution to a problem that could be solved with a 
> simple debounce, it sure _sounds_ like Spaceballs teleportation.

It's pretty straightforward in theory. Read
https://bjk5.com/post/44698559168/breaking-down-amazons-mega-dropdown. It's
already used in practice in Kickoff's sidebar, and it works well there. The
problems are all with the practical difficulty of getting it to work in a panel
context with dynamically-sized and -positioned tooltips as the targets.

I made an MR with a debounce solution long ago — I think it's linked somewhere
here even — but it was rejected because it makes all tooltips noticeably slower
for any debounce length which effectively filters out the bad cases.

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

[plasma-pa] [Bug 453629] Show full window titles on Applications tab, as the KCM does

2023-02-05 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=453629

Bharadwaj Raju  changed:

   What|Removed |Added

 CC||cf...@kde.org

--- Comment #4 from Bharadwaj Raju  ---
*** Bug 409453 has been marked as a duplicate of this bug. ***

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

[plasma-pa] [Bug 409453] Show which media is playing in the applet as in the KCM

2023-02-05 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=409453

Bharadwaj Raju  changed:

   What|Removed |Added

 CC||bharadwaj.raju777@protonmai
   ||l.com
 Status|CONFIRMED   |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #3 from Bharadwaj Raju  ---


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

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

[kdialog] [Bug 450015] KDialog progress bar doesn't go to 100%

2023-01-15 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=450015

Bharadwaj Raju  changed:

   What|Removed |Added

  Latest Commit|https://invent.kde.org/util |https://invent.kde.org/util
   |ities/kdialog/commit/071216 |ities/kdialog/commit/1a808a
   |ef09c80c07027bf37db216d0b90 |c2b8a007c6cfff777a69d04f15b
   |d2bfbf3 |99b9f4c

--- Comment #5 from Bharadwaj Raju  ---
Git commit 1a808ac2b8a007c6cfff777a69d04f15b99b9f4c by Bharadwaj Raju, on
behalf of shenleban tongying.
Committed on 15/01/2023 at 08:59.
Pushed by bharadwaj-raju into branch 'release/22.12'.

fix: disable progressdialog's autoreset

`QProgressDialog` has a default `autoreset` turned on which will reset the
progress bar when max value reached and it will prevents 100% being shown

The source of truth is here:
https://github.com/qt/qtbase/blame/bd99d02123dcb9e406d06605fe0fa8a9d2cea3a4/src/widgets/dialogs/qprogressdialog.cpp#L655-L657

I don't know why `QProgressDialog` have `autoreset` while `QProgressBar` don't,
but it is there for at least 10 years.

To test this:
```
dbusRef=`kdialog --progressbar "init val" 3`
qdbus $dbusRef Set "" value 1
sleep 1
qdbus $dbusRef Set "" value 2
sleep 1
qdbus $dbusRef Set "" value 3
sleep 1
```


(cherry picked from commit 071216ef09c80c07027bf37db216d0b90d2bfbf3)

M  +1-0src/progressdialog.cpp

https://invent.kde.org/utilities/kdialog/commit/1a808ac2b8a007c6cfff777a69d04f15b99b9f4c

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

[kdialog] [Bug 450015] KDialog progress bar doesn't go to 100%

2023-01-15 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=450015

Bharadwaj Raju  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
 Resolution|--- |FIXED
  Latest Commit||https://invent.kde.org/util
   ||ities/kdialog/commit/071216
   ||ef09c80c07027bf37db216d0b90
   ||d2bfbf3

--- Comment #4 from Bharadwaj Raju  ---
Git commit 071216ef09c80c07027bf37db216d0b90d2bfbf3 by Bharadwaj Raju, on
behalf of shenleban tongying.
Committed on 15/01/2023 at 08:05.
Pushed by bharadwaj-raju into branch 'master'.

fix: disable progressdialog's autoreset

`QProgressDialog` has a default `autoreset` turned on which will reset the
progress bar when max value reached and it will prevents 100% being shown

The source of truth is here:
https://github.com/qt/qtbase/blame/bd99d02123dcb9e406d06605fe0fa8a9d2cea3a4/src/widgets/dialogs/qprogressdialog.cpp#L655-L657

I don't know why `QProgressDialog` have `autoreset` while `QProgressBar` don't,
but it is there for at least 10 years.

To test this:
```
dbusRef=`kdialog --progressbar "init val" 3`
qdbus $dbusRef Set "" value 1
sleep 1
qdbus $dbusRef Set "" value 2
sleep 1
qdbus $dbusRef Set "" value 3
sleep 1
```

M  +1-0src/progressdialog.cpp

https://invent.kde.org/utilities/kdialog/commit/071216ef09c80c07027bf37db216d0b90d2bfbf3

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

[Spectacle] [Bug 463417] Capture Rectangular Region works differently now

2023-01-12 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=463417

Bharadwaj Raju  changed:

   What|Removed |Added

  Latest Commit|https://invent.kde.org/grap |https://invent.kde.org/grap
   |hics/spectacle/commit/c9ca6 |hics/spectacle/commit/e52fd
   |31b5d2f2237f538c00b19e9cee6 |311a7e074dd14a795e99478630a
   |72a534a8|e1bd10bb

--- Comment #10 from Bharadwaj Raju  ---
Git commit e52fd311a7e074dd14a795e99478630ae1bd10bb by Bharadwaj Raju.
Committed on 12/01/2023 at 12:02.
Pushed by bharadwaj-raju into branch 'release/22.12'.

Make "Until Spectacle is closed" the default setting for remembering area

We got some complaints about the "Always" default. That made me reconsider the
whole thing, and now I realize taking repeated rectangular screenshots of the
same area is a rather more niche usecase than I first imagined.

This should be a better balance, and hopefully less confusing for users.

cc @ngraham 


(cherry picked from commit c9ca631b5d2f2237f538c00b19e9cee672a534a8)

M  +1-1src/Gui/SettingsDialog/spectacle.kcfg

https://invent.kde.org/graphics/spectacle/commit/e52fd311a7e074dd14a795e99478630ae1bd10bb

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

[Spectacle] [Bug 463417] Capture Rectangular Region works differently now

2023-01-12 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=463417

Bharadwaj Raju  changed:

   What|Removed |Added

 Resolution|--- |FIXED
  Latest Commit||https://invent.kde.org/grap
   ||hics/spectacle/commit/c9ca6
   ||31b5d2f2237f538c00b19e9cee6
   ||72a534a8
 Status|REOPENED|RESOLVED

--- Comment #9 from Bharadwaj Raju  ---
Git commit c9ca631b5d2f2237f538c00b19e9cee672a534a8 by Bharadwaj Raju.
Committed on 12/01/2023 at 12:01.
Pushed by bharadwaj-raju into branch 'master'.

Make "Until Spectacle is closed" the default setting for remembering area

We got some complaints about the "Always" default. That made me reconsider the
whole thing, and now I realize taking repeated rectangular screenshots of the
same area is a rather more niche usecase than I first imagined.

This should be a better balance, and hopefully less confusing for users.

cc @ngraham 

M  +1-1src/Gui/SettingsDialog/spectacle.kcfg

https://invent.kde.org/graphics/spectacle/commit/c9ca631b5d2f2237f538c00b19e9cee672a534a8

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

[Spectacle] [Bug 463417] Capture Rectangular Region works differently now

2023-01-11 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=463417

--- Comment #8 from Bharadwaj Raju  ---
https://invent.kde.org/graphics/spectacle/-/merge_requests/177

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

[Spectacle] [Bug 463417] Capture Rectangular Region works differently now

2023-01-11 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=463417

Bharadwaj Raju  changed:

   What|Removed |Added

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

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

[Spectacle] [Bug 463417] Capture Rectangular Region works differently now

2023-01-11 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=463417

--- Comment #5 from Bharadwaj Raju  ---
Multiple complaints about this now. Maybe it is worth reverting the change
until we come up with something better?

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

[Spectacle] [Bug 463417] Capture Rectangular Region works differently now

2023-01-11 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=463417

Bharadwaj Raju  changed:

   What|Removed |Added

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

--- Comment #3 from Bharadwaj Raju  ---
> You have to drag and resize it then press Enter to take a screeenshot of that 
> region of the screen.

Note that you don't have to do this — you can, just like before, left click and
drag anywhere to create a new region.

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

[plasmashell] [Bug 463975] Browsing the main categories with a mouse needs to be more responsive

2023-01-08 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=463975

--- Comment #6 from Bharadwaj Raju  ---
Possibly https://invent.kde.org/plasma/plasma-workspace/-/merge_requests/2462
will help

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

[plasmashell] [Bug 463975] Browsing the main categories with a mouse needs to be more responsive

2023-01-08 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=463975

--- Comment #5 from Bharadwaj Raju  ---
To be clear, it doesn't need to be perfectly straight — moving even at a ~10°
angle to the right is still "straight" enough to be immediate.

You can visualize it as a triangle with one point at your cursor and the other
two at the top-left and bottom-left of the app list/grid. As long as you're not
moving your mouse such that you stay inside that triangle, it will switch
categories.

I don't think that can be adjusted without making the other action (going from
category to apps) worse. I think it would be a better solution to fix the issue
where *sometimes* holding your cursor over an item doesn't switch even after
the delay threshold.

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

[plasmashell] [Bug 463975] Browsing the main categories with a mouse needs to be more responsive

2023-01-08 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=463975

Bharadwaj Raju  changed:

   What|Removed |Added

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

--- Comment #2 from Bharadwaj Raju  ---
Generally if you move the mouse towards the right, the menu does not switch
immediately on purpose because in that action you are most likely moving
towards the app list/grid on the right-hand-side to select an app, and
switching categories would be annoying.

Moving up and down in a straight line should be perfectly fast.

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

[frameworks-kio] [Bug 462808] Dolphin opened from Chrome: cannot pick files with non-ascii characters in the name

2022-12-31 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=462808

Bharadwaj Raju  changed:

   What|Removed |Added

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

--- Comment #2 from Bharadwaj Raju  ---
They're both (FF and Chrome) using the portal interface, so I'm inclined to
think the bug is in Chrome somewhere and not KDE. I can't find a report on
bugs.chromium.org, can you try reporting there? Mention that it works on
Firefox.

Something else you can try:  In a GNOME live session, does a Chrome Flatpak
file dialog work with non-ASCII characters correctly? (Ensure it's using the
portal and not a Gtk dialog it launched itself — I believe this can be verified
by seeing if the dialog looks Gtk4/libadwaita-ish)

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

[plasmashell] [Bug 448833] Overlapping entries when filtering and deleting and filtering again several times

2022-12-29 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=448833

--- Comment #9 from Bharadwaj Raju  ---
Thanks for those comments, Tom — filtering and scrolling simultaneously appears
to be key, and finally I can reproduce this too.

Observations:
- The glitched entries can't be interacted with, they're just there
- Opening and closing the applet does not clear them
- Scrolling does not clear them, they move with the scroll view (answering my
previous question here)
- Clearing the entire clipboard history does not clear them

Hopefully these clues help.

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

[gwenview] [Bug 378021] Gwenview should support trackpad pinch-to-zoom gestures

2022-12-15 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=378021

Bharadwaj Raju  changed:

   What|Removed |Added

 CC||bharadwaj.raju777@protonmai
   ||l.com
 Status|CONFIRMED   |ASSIGNED

--- Comment #5 from Bharadwaj Raju  ---
https://invent.kde.org/graphics/gwenview/-/merge_requests/171

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

[plasmashell] [Bug 448649] Saving a clipboard edit after clearing the history doesn't make a new entry

2022-12-08 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=448649

Bharadwaj Raju  changed:

   What|Removed |Added

  Latest Commit||https://invent.kde.org/plas
   ||ma/plasma-workspace/commit/
   ||d8a82878c247dc33d09cec01d09
   ||652948a789d61
 Resolution|--- |FIXED
 Status|ASSIGNED|RESOLVED

--- Comment #4 from Bharadwaj Raju  ---
Git commit d8a82878c247dc33d09cec01d09652948a789d61 by Bharadwaj Raju.
Committed on 09/12/2022 at 03:55.
Pushed by bharadwaj-raju into branch 'master'.

applets/clipboard: Hide clear button when editing

M  +3-0applets/clipboard/contents/ui/EditPage.qml
M  +2-1applets/clipboard/contents/ui/clipboard.qml

https://invent.kde.org/plasma/plasma-workspace/commit/d8a82878c247dc33d09cec01d09652948a789d61

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

[plasma-integration] [Bug 461529] Crash in XdgWindowExporterWayland::run when selecting "Open with other application" on a download notification

2022-12-08 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=461529

Bharadwaj Raju  changed:

   What|Removed |Added

  Latest Commit||https://invent.kde.org/plas
   ||ma/plasma-integration/commi
   ||t/ae5aef83bed0104e772486335
   ||b6061159fb74854
 Resolution|--- |FIXED
 Status|ASSIGNED|RESOLVED

--- Comment #3 from Bharadwaj Raju  ---
Git commit ae5aef83bed0104e772486335b6061159fb74854 by Bharadwaj Raju.
Committed on 08/12/2022 at 14:28.
Pushed by bharadwaj-raju into branch 'master'.

Fix crash when selecting "Open with other application" on download notification

M  +8-2src/platformtheme/kdeplatformtheme.cpp

https://invent.kde.org/plasma/plasma-integration/commit/ae5aef83bed0104e772486335b6061159fb74854

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

[plasmashell] [Bug 409434] Transfer rate is cut off on bottom of notification showing details of a file transfer

2022-12-08 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=409434

Bharadwaj Raju  changed:

   What|Removed |Added

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

--- Comment #2 from Bharadwaj Raju  ---
Created attachment 154430
  --> https://bugs.kde.org/attachment.cgi?id=154430=edit
Screenshot on 5.27 master — bug not present

Can't reproduce with latest Plasma. If I try to artificially increase the text,
it still works fine. Screenshot attached.

Can anyone else still reproduce this?

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

[Phonon] [Bug 396912] Infinite notifications 'An application needs additional multimedia codecs'

2022-12-08 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=396912

Bharadwaj Raju  changed:

   What|Removed |Added

   Assignee|k...@privat.broulik.de   |unassigned-b...@kde.org
  Component|Notifications   |general
Version|5.13.3  |unspecified
   Target Milestone|1.0 |---
 CC||bharadwaj.raju777@protonmai
   ||l.com, myr...@kde.org,
   ||romain.per...@gmail.com,
   ||sit...@kde.org
Product|plasmashell |Phonon

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

[plasmashell] [Bug 426187] Notification changes its position on the screen when I open hamburger menu of Notifications applet

2022-12-08 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=426187

Bharadwaj Raju  changed:

   What|Removed |Added

 Status|CONFIRMED   |ASSIGNED
 CC||bharadwaj.raju777@protonmai
   ||l.com

--- Comment #4 from Bharadwaj Raju  ---
Seems this was also fixed with
https://invent.kde.org/plasma/plasma-workspace/-/merge_requests/2426

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

[systemsettings] [Bug 414808] Make it possible to test/preview the color temperature during initial configuration

2022-12-06 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=414808

Bharadwaj Raju  changed:

   What|Removed |Added

 CC||bharadwaj.raju777@protonmai
   ||l.com
 Resolution|--- |FIXED
 Status|CONFIRMED   |RESOLVED

--- Comment #3 from Bharadwaj Raju  ---
Solved with
https://invent.kde.org/plasma/plasma-workspace/-/merge_requests/1393

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

[systemsettings] [Bug 448946] Nightcolor starts querying location automatically when activated before informed consent text has been shown

2022-12-06 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=448946

--- Comment #5 from Bharadwaj Raju  ---
In the present state, Off is also part of the combobox so the user can
completely avoid ever using the "Current location" option. Does that resolve
this?

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

[plasmashell] [Bug 462035] Toggling Night Color Control via keyboard shortcut opens an empty Plasma popup

2022-12-06 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=462035

Bharadwaj Raju  changed:

   What|Removed |Added

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

--- Comment #2 from Bharadwaj Raju  ---
Better would be to not expose the shortcut in Plasma, and let users use the
KWin shortcut "Toggle Night Color" instead.

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

[KScreen] [Bug 462646] New: kscreen_osd_service crashes in KScreen::Output::~Output when closing output mode change OSD

2022-12-04 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=462646

Bug ID: 462646
   Summary: kscreen_osd_service crashes in
KScreen::Output::~Output when closing output mode
change OSD
Classification: Plasma
   Product: KScreen
   Version: master
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: OSD
  Assignee: kscreen-bugs-n...@kde.org
  Reporter: bharadwaj.raju...@protonmail.com
  Target Milestone: ---

BACKTRACE
#0  0x75f6f67f in QWindow::setVisible(bool) () from
/lib64/libQt5Gui.so.5
#1  0x75adbc26 in void doActivate(QObject*, int, void**) () from
/lib64/libQt5Core.so.5
#2  0x75ad6c73 in QObject::destroyed(QObject*) () from
/lib64/libQt5Core.so.5
#3  0x75ad89eb in QObject::~QObject() () from /lib64/libQt5Core.so.5
#4  0x77f06029 in KScreen::Output::~Output (this=0x6987c0,
__in_chrg=) at
/home/bharadwaj/kde/src/libkscreen/src/output.cpp:178
#5  0x00407ec5 in QtSharedPointer::ExternalRefCountData::destroy
(this=0x6978b0) at /usr/include/qt5/QtCore/qsharedpointer_impl.h:149
#6  QSharedPointer::deref (dd=0x6978b0) at
/usr/include/qt5/QtCore/qsharedpointer_impl.h:458
#7  QSharedPointer::deref (dd=0x6978b0) at
/usr/include/qt5/QtCore/qsharedpointer_impl.h:454
#8  QSharedPointer::deref (this=0x5eea10) at
/usr/include/qt5/QtCore/qsharedpointer_impl.h:453
#9  QSharedPointer::~QSharedPointer (this=0x5eea10,
__in_chrg=) at /usr/include/qt5/QtCore/qsharedpointer_impl.h:310
#10 KScreen::Osd::~Osd (this=0x5eea00, __in_chrg=) at
/home/bharadwaj/kde/src/kscreen/osd/osd.cpp:38
#11 0x00407f09 in KScreen::Osd::~Osd (this=0x5eea00,
__in_chrg=) at /home/bharadwaj/kde/src/kscreen/osd/osd.cpp:38
#12 0x004059ff in qDeleteAll::const_iterator> (end=..., begin=...) at
/usr/include/qt5/QtCore/qalgorithms.h:320
#13 qDeleteAll > (c=...) at
/usr/include/qt5/QtCore/qalgorithms.h:328
#14 KScreen::OsdManager::quit (this=0x7fffd8a0) at
/home/bharadwaj/kde/src/kscreen/osd/osdmanager.cpp:49
#15 0x75ad2ec4 in QObject::event(QEvent*) () from
/lib64/libQt5Core.so.5
#16 0x75aa8278 in QCoreApplication::notifyInternal2(QObject*, QEvent*)
() from /lib64/libQt5Core.so.5
#17 0x75aab5e4 in QCoreApplicationPrivate::sendPostedEvents(QObject*,
int, QThreadData*) () from /lib64/libQt5Core.so.5
#18 0x75af9897 in postEventSourceDispatch(_GSource*, int (*)(void*),
void*) () from /lib64/libQt5Core.so.5
#19 0x74519cbf in g_main_context_dispatch () from
/lib64/libglib-2.0.so.0
#20 0x7456f598 in g_main_context_iterate.constprop () from
/lib64/libglib-2.0.so.0
#21 0x74516f40 in g_main_context_iteration () from
/lib64/libglib-2.0.so.0
#22 0x75af938a in
QEventDispatcherGlib::processEvents(QFlags) ()
from /lib64/libQt5Core.so.5
#23 0x75aa6cca in
QEventLoop::exec(QFlags) () from
/lib64/libQt5Core.so.5
#24 0x75aaed92 in QCoreApplication::exec() () from
/lib64/libQt5Core.so.5
#25 0x004048a2 in main (argc=, argv=0x7fffd9f8) at
/home/bharadwaj/kde/src/kscreen/osd/main.cpp:17



SOFTWARE/OS VERSIONS
Operating System: Fedora Linux 37
KDE Plasma Version: 5.26.80
KDE Frameworks Version: 5.101.0
Qt Version: 5.15.7
Kernel Version: 6.0.10-300.fc37.x86_64 (64-bit)
Graphics Platform: Wayland

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

[KScreen] [Bug 462629] kscreen_osd_service crashes in LayerShellQt::QWaylandLayerSurface::QWaylandLayerSurface upon pressing the output switch button

2022-12-04 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=462629

Bharadwaj Raju  changed:

   What|Removed |Added

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

--- Comment #1 from Bharadwaj Raju  ---
Fixed when I did a rebuild after updating Qt.

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

[KScreen] [Bug 462629] New: kscreen_osd_service crashes in LayerShellQt::QWaylandLayerSurface::QWaylandLayerSurface upon pressing the output switch button

2022-12-04 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=462629

Bug ID: 462629
   Summary: kscreen_osd_service crashes in
LayerShellQt::QWaylandLayerSurface::QWaylandLayerSurfa
ce upon pressing the output switch button
Classification: Plasma
   Product: KScreen
   Version: master
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: OSD
  Assignee: kscreen-bugs-n...@kde.org
  Reporter: bharadwaj.raju...@protonmail.com
  Target Milestone: ---

BACKTRACE

#0  0x77ecbed5 in
LayerShellQt::QWaylandLayerSurface::QWaylandLayerSurface
(this=this@entry=0x9c2a60, shell=shell@entry=0x9ba8b0,
window=window@entry=0x6e1ac0)
at /home/bharadwaj/kde/src/layer-shell-qt/src/qwaylandlayersurface.cpp:38
#1  0x77eccdc5 in LayerShellQt::QWaylandLayerShell::createLayerSurface
(this=0x9ba8b0, window=0x6e1ac0)
at /home/bharadwaj/kde/src/layer-shell-qt/src/qwaylandlayershell.cpp:26
#2  0x7652d515 in QtWaylandClient::QWaylandWindow::initWindow() () from
/lib64/libQt5WaylandClient.so.5
#3  0x7652d84d in QtWaylandClient::QWaylandWindow::setVisible(bool) ()
from /lib64/libQt5WaylandClient.so.5
#4  0x75f76097 in QWindowPrivate::setVisible(bool) () from
/lib64/libQt5Gui.so.5
#5  0x00405d8a in operator() (op=, __closure=0x6873c0)
at /home/bharadwaj/kde/src/kscreen/osd/osdmanager.cpp:120
#6  QtPrivate::FunctorCall,
QtPrivate::List, void,
KScreen::OsdManager::showActionSelector():: >::call (arg=, f=...) at
/usr/include/qt5/QtCore/qobjectdefs_impl.h:146
#7  QtPrivate::Functor,
1>::call, void>
(arg=, f=...) at
/usr/include/qt5/QtCore/qobjectdefs_impl.h:256
#8 
QtPrivate::QFunctorSlotObject, 1, QtPrivate::List,
void>::impl(int, QtPrivate::QSlotObjectBase *, QObject *, void **, bool *)
(which=, this_=0x6873b0, r=, a=, 
ret=) at /usr/include/qt5/QtCore/qobjectdefs_impl.h:443
#9  0x75adbc26 in void doActivate(QObject*, int, void**) () from
/lib64/libQt5Core.so.5
#10 0x77ee81ff in KScreen::ConfigOperation::finished
(this=this@entry=0x5d1680, _t1=, _t1@entry=0x5d1680)
at
/home/bharadwaj/kde/build/libkscreen/src/KF5Screen_autogen/EWIEGA46WW/moc_configoperation.cpp:153
#11 0x77ef54d8 in KScreen::ConfigOperationPrivate::doEmitResult
(this=0x62dc50) at
/home/bharadwaj/kde/src/libkscreen/src/configoperation.cpp:48
#12 0x75ad2ec4 in QObject::event(QEvent*) () from
/lib64/libQt5Core.so.5
#13 0x75aa8278 in QCoreApplication::notifyInternal2(QObject*, QEvent*)
() from /lib64/libQt5Core.so.5
#14 0x75aab5e4 in QCoreApplicationPrivate::sendPostedEvents(QObject*,
int, QThreadData*) () from /lib64/libQt5Core.so.5
#15 0x75af9897 in postEventSourceDispatch(_GSource*, int (*)(void*),
void*) () from /lib64/libQt5Core.so.5
#16 0x74519cbf in g_main_context_dispatch () from
/lib64/libglib-2.0.so.0
#17 0x7456f598 in g_main_context_iterate.constprop () from
/lib64/libglib-2.0.so.0
#18 0x74516f40 in g_main_context_iteration () from
/lib64/libglib-2.0.so.0
#19 0x75af938a in
QEventDispatcherGlib::processEvents(QFlags) ()
from /lib64/libQt5Core.so.5
#20 0x75aa6cca in
QEventLoop::exec(QFlags) () from
/lib64/libQt5Core.so.5
#21 0x75aaed92 in QCoreApplication::exec() () from
/lib64/libQt5Core.so.5
#22 0x004048a2 in main (argc=, argv=0x7fffdad8) at
/home/bharadwaj/kde/src/kscreen/osd/main.cpp:17



SOFTWARE/OS VERSIONS
Operating System: Fedora Linux 37
KDE Plasma Version: 5.26.80
KDE Frameworks Version: 5.101.0
Qt Version: 5.15.7
Kernel Version: 6.0.10-300.fc37.x86_64 (64-bit)
Graphics Platform: Wayland

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

[xdg-desktop-portal-kde] [Bug 461165] App Chooser dialog inappropriately shows all apps when called from a non-sandboxed app

2022-11-24 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=461165

Bharadwaj Raju  changed:

   What|Removed |Added

  Latest Commit||https://invent.kde.org/plas
   ||ma/xdg-desktop-portal-kde/c
   ||ommit/451e6061d58f86e267194
   ||d9f398c588646f4f94e
 Status|ASSIGNED|RESOLVED
   Version Fixed In||5.27
 Resolution|--- |FIXED

--- Comment #6 from Bharadwaj Raju  ---
Git commit 451e6061d58f86e267194d9f398c588646f4f94e by Bharadwaj Raju.
Committed on 24/11/2022 at 13:52.
Pushed by bharadwaj-raju into branch 'master'.

AppChooserDialog: Try to find preferred apps if the caller doesn't do it for us
FIXED-IN: 5.27

M  +94   -11   src/appchooserdialog.cpp
M  +11   -1src/appchooserdialog.h

https://invent.kde.org/plasma/xdg-desktop-portal-kde/commit/451e6061d58f86e267194d9f398c588646f4f94e

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

[plasmashell] [Bug 358930] moving the mouse over a different application icon immediately changes the window list

2022-11-20 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=358930

--- Comment #46 from Bharadwaj Raju  ---
Hi. My MR extracting the Kickoff mouse filter into a library was merged, but
I'm afraid the application of it to the task manager still has problems which I
need to sort out. See
https://invent.kde.org/plasma/plasma-desktop/-/merge_requests/1231. This bug
isn't fixed yet, I'm sorry.

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

[plasmashell] [Bug 430536] OSD does not show volume level above 100% while the screen is locked

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

--- Comment #10 from Bharadwaj Raju  ---
(There is another bug I notice where the volume keys seem to straight up not
change the volume sometimes when in the lock screen, maybe this is another
confounding factor)

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

[plasmashell] [Bug 430536] OSD does not show volume level above 100% while the screen is locked

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

--- Comment #9 from Bharadwaj Raju  ---
Don't know how that happened... Make sure you're actually raising volume above
100. Even if raise max volume is enabled but current volume is <= 100, the
lockscreen OSD will show the slider going upto 100 only, and this is expected
behavior for now.

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

[kmenuedit] [Bug 450553] Edit Applications menu crashes when save button is clicked

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

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

kmenuedit (5.26.80) using Qt 5.15.6

What I was doing: I added an entry called "test", then deleted it. After, I was
asked to save/discard and I selected save.

-- Backtrace (Reduced):
#5  QString::QString (other=, this=this@entry=0x7ffe0a1e33f0) at
/usr/include/qt5/QtCore/qstring.h:1093
#6  KService::desktopEntryName (this=0x0) at
/home/bharadwaj/kde/src/kservice/src/services/kservice.cpp:944
#7  0x0041de6c in GlobalAccel::changeMenuEntryShortcut (service=...,
shortcut=...) at /usr/include/qt5/QtCore/qshareddata.h:161
#8  0x004277de in MenuFolderInfo::save (this=0x1a142f0,
menuFile=0x19d0eb0) at /home/bharadwaj/kde/src/kmenuedit/menuinfo.cpp:176
#9  0x0042df6d in TreeView::save (this=0x18ebe10) at
/home/bharadwaj/kde/src/kmenuedit/treeview.cpp:1709

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

[kmenuedit] [Bug 450553] Edit Applications menu crashes when save button is clicked

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

Bharadwaj Raju  changed:

   What|Removed |Added

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

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

[xdg-desktop-portal-kde] [Bug 461165] App Chooser dialog inappropriately shows all apps when called from a non-sandboxed app

2022-11-07 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=461165

Bharadwaj Raju  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|REPORTED|CONFIRMED
 CC||bharadwaj.raju777@protonmai
   ||l.com

--- Comment #3 from Bharadwaj Raju  ---
For testing, do you have any example of a sandboxed app which calls this
dialog?

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

[plasma-integration] [Bug 461529] New: Crash in XdgWindowExporterWayland::run when selecting "Open with other application" on a download notification

2022-11-06 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=461529

Bug ID: 461529
   Summary: Crash in XdgWindowExporterWayland::run when selecting
"Open with other application" on a download
notification
Classification: Plasma
   Product: plasma-integration
   Version: master
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: plasma-b...@kde.org
  Reporter: bharadwaj.raju...@protonmail.com
  Target Milestone: ---

SUMMARY
Plasma crashes in XdgWindowExporterWayland::run when I try to get the open with
other apps dialog from a file download notification.

STEPS TO REPRODUCE
1. Download a file with Firefox, get a notification
2. Menu > Open with > Open with other application

SOFTWARE/OS VERSIONS
KDE Plasma Version: git master
KDE Frameworks Version: git master
Qt Version: 5.15.6

BACKTRACE

#0  0x7632f3a0 in
QWidgetPrivate::windowHandle(QWidgetPrivate::WindowHandleMode) const () at
/lib64/libQt5Widgets.so.5
#1  0x7fffe33b9011 in
XdgWindowExporterWayland::run(QWidget*)::{lambda(unsigned int, unsigned
int)#1}::operator()(unsigned int, unsigned int) const
(version=, name=, __closure=0x167ae50) at
/home/bharadwaj/kde/src/plasma-integration/src/platformtheme/kdeplatformtheme.cpp:106
#2  QtPrivate::FunctorCall,
QtPrivate::List, void,
XdgWindowExporterWayland::run(QWidget*)::{lambda(unsigned int, unsigned
int)#1}>::call(XdgWindowExporterWayland::run(QWidget*)::{lambda(unsigned int,
unsigned int)#1}&, void**) (arg=, f=...)
at /usr/include/qt5/QtCore/qobjectdefs_impl.h:146
#3 
QtPrivate::Functor::call,
void>(XdgWindowExporterWayland::run(QWidget*)::{lambda(unsigned int, unsigned
int)#1}&, void*, void**) (arg=, f=...)
at /usr/include/qt5/QtCore/qobjectdefs_impl.h:256
#4 
QtPrivate::QFunctorSlotObject,
void>::impl(int, QtPrivate::QSlotObjectBase*, QObject*, void**, bool*)
(which=, this_=0x167ae40, r=, a=,
ret=)
at /usr/include/qt5/QtCore/qobjectdefs_impl.h:443
#5  0x754a39a6 in void doActivate(QObject*, int, void**) () at
/lib64/libQt5Core.so.5
#6  0x77e8c1f8 in
KWayland::Client::Registry::exporterUnstableV2Announced(unsigned int, unsigned
int)
(this=, _t1=, _t2=)
at
/home/bharadwaj/kde/build/kwayland/src/client/KF5WaylandClient_autogen/EWIEGA46WW/moc_registry.cpp:1292
#7  0x74973746 in ffi_call_unix64 () at /lib64/libffi.so.8
#8  0x749704d2 in ffi_call_int.lto_priv () at /lib64/libffi.so.8
#9  0x77dc4e53 in wl_closure_invoke.constprop () at
/lib64/libwayland-client.so.0
#10 0x77dc55f3 in dispatch_event.isra () at
/lib64/libwayland-client.so.0
#11 0x77dc57bc in wl_display_dispatch_queue_pending () at
/lib64/libwayland-client.so.0
#12 0x74acd695 in QtWaylandClient::QWaylandDisplay::flushRequests() ()
at /lib64/libQt5WaylandClient.so.5
#13 0x754a3b2f in void doActivate(QObject*, int, void**) () at
/lib64/libQt5Core.so.5
#14 0x754c105d in
QEventDispatcherGlib::processEvents(QFlags) ()
at /lib64/libQt5Core.so.5
#15 0x7546ec1a in
QEventLoop::exec(QFlags) () at
/lib64/libQt5Core.so.5
#16 0x75476ce2 in QCoreApplication::exec() () at /lib64/libQt5Core.so.5
#17 0x00422cb9 in main(int, char**) (argc=,
argv=) at
/home/bharadwaj/kde/src/plasma-workspace/shell/main.cpp:235

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

[plasmashell] [Bug 454345] Desktop Icons sometimes get scrambled on plasmashell startup

2022-11-04 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=454345

Bharadwaj Raju  changed:

   What|Removed |Added

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

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

[Elisa] [Bug 458694] Currently playing song info is not sent to KDE Connect on Windows

2022-11-04 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=458694

--- Comment #1 from Bharadwaj Raju  ---
There's a specific Windows API we'll need to use —
https://learn.microsoft.com/en-us/windows/uwp/audio-video-camera/integrate-with-systemmediatransportcontrols

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

[Elisa] [Bug 458694] Currently playing song info is not sent to KDE Connect on Windows

2022-11-04 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=458694

Bharadwaj Raju  changed:

   What|Removed |Added

 CC||bharadwaj.raju777@protonmai
   ||l.com
Summary|Currently playing song info |Currently playing song info
   |is not sent to KDE Connect  |is not sent to KDE Connect
   ||on Windows

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

[plasmashell] [Bug 438950] Triangle menu idle-hover reset doesn't work in kicker

2022-11-03 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=438950

Bharadwaj Raju  changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|FIXED   |---
 CC||bharadwaj.raju777@protonmai
   ||l.com

--- Comment #17 from Bharadwaj Raju  ---
Reopening -- the fix caused other, more serious problems and has been reverted
for now. Hopefully someone can come up with a better solution.

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

[plasma-pa] [Bug 418713] Global mute is not shared between applets

2022-11-02 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=418713

Bharadwaj Raju  changed:

   What|Removed |Added

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

--- Comment #1 from Bharadwaj Raju  ---
Now that we have a global config system in plasma-pa we can simply move these
configs there and problem solved. Will make an MR soon.

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

[plasma-pa] [Bug 443356] Clicking on the settings icon in the applet should open the audio KCM

2022-11-02 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=443356

Bharadwaj Raju  changed:

   What|Removed |Added

 Status|CONFIRMED   |RESOLVED
 CC||bharadwaj.raju777@protonmai
   ||l.com
 Resolution|--- |FIXED

--- Comment #9 from Bharadwaj Raju  ---
Fixed with https://invent.kde.org/plasma/plasma-pa/-/merge_requests/145

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

[plasmashell] [Bug 430536] OSD does not show volume level above 100% while the screen is locked

2022-10-26 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=430536

Bharadwaj Raju  changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
  Latest Commit||https://invent.kde.org/plas
   ||ma/kscreenlocker/commit/f35
   ||d5ba4bafb12c00608d6a7141cc5
   ||22f2d4c790
 Resolution|--- |FIXED

--- Comment #7 from Bharadwaj Raju  ---
Git commit f35d5ba4bafb12c00608d6a7141cc522f2d4c790 by Bharadwaj Raju.
Committed on 26/10/2022 at 20:58.
Pushed by bharadwaj-raju into branch 'master'.

Workaround: assume max percent is 150 if percent is >100 in OSD

Proper solution seems like it'll need to wait for KF6.

M  +4-0greeter/greeterapp.cpp

https://invent.kde.org/plasma/kscreenlocker/commit/f35d5ba4bafb12c00608d6a7141cc522f2d4c790

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

[plasmashell] [Bug 430536] OSD does not show volume level above 100% while the screen is locked

2022-10-26 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=430536

Bharadwaj Raju  changed:

   What|Removed |Added

 Status|CONFIRMED   |ASSIGNED

--- Comment #6 from Bharadwaj Raju  ---
https://invent.kde.org/plasma/kscreenlocker/-/merge_requests/108

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

[plasmashell] [Bug 430536] OSD does not show volume level above 100% while the screen is locked

2022-10-26 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=430536

Bharadwaj Raju  changed:

   What|Removed |Added

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

--- Comment #5 from Bharadwaj Raju  ---
The lock screen relies on signals from osdService to display its own OSDs. But
those signals don't have any information about max percentage. Adding a max
percent parameter to the osdProgress signal would mean breaking the DBus API
(because as far as I know, DBus doesn't have overloads or default values so
existing users would break). So a proper solution would need to wait for KDE 6
I think.

As a hack in the meantime we can assume that the max is 150 if the value is
>100.

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

[systemsettings] [Bug 459446] Manual location but still "Host location.services.mozilla.com not found" error

2022-10-25 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=459446

--- Comment #4 from Bharadwaj Raju  ---
Please reopen if this still happens. As I said before, I'm not 100% sure my MR
fixed this.

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

[systemsettings] [Bug 459446] Manual location but still "Host location.services.mozilla.com not found" error

2022-10-25 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=459446

Bharadwaj Raju  changed:

   What|Removed |Added

   Version Fixed In||5.27
 Resolution|--- |FIXED
  Latest Commit||https://invent.kde.org/plas
   ||ma/plasma-workspace/commit/
   ||56ae8023b7fd11897ac6282d1f0
   ||930b85ea720ac
 Status|ASSIGNED|RESOLVED

--- Comment #3 from Bharadwaj Raju  ---
Git commit 56ae8023b7fd11897ac6282d1f0930b85ea720ac by Bharadwaj Raju.
Committed on 25/10/2022 at 19:49.
Pushed by bharadwaj-raju into branch 'master'.

Don't run colorcorrectlocationupdater unnecessarily

Don't run the colorcorrectlocationupdater kded module when the user is not
using Automatic location for Night Color. The module would not have attempted
geolocation in that case anyway, but having it show as running would be
misleading, as it would give the impression that geolocation was actually
happening despite the user having disabled it, which isn't the case.

FIXED-IN: 5.27

---

# Test Plan

## Case 1: Already on Automatic location

1. Change the mode to automatic *before* installing any of the changes in this
MR. Ensure ~/.config/kded5rc does not have a
`[Module-colorcorrectlocationupdater]` group.
2. Build and install MR.
3. Restart system.
4. Check that the "Automatic Location for Night Color" service is running and
set to autoload, in System Settings > Background Services.

**NOTE:** The Background Services KCM does not auto-reload changes to service
status. You need to close and open the KCM for it to pick up on those.

## Case 2: Already not on automatic location

1. Change the mode to something other than automatic *before* installing any of
the changes in this MR. Ensure ~/.config/kded5rc does not have a
`[Module-colorcorrectlocationupdater]` group.
2. Build and install MR.
3. Restart system.
4. Check that the "Automatic Location for Night Color" service is *not* running
and autoload is *disabled*, in System Settings > Background Services.

**NOTE:** If you've already tested Case 1: enabling autoload of the service
from System Settings > Background Services, then installing the old versions of
libcolorcorrect (colorcorrectlocationupdater) and the Night Color KCM, then
restarting, should give you a system which is in the "before installing this
MR" state.

## Case 3: Switching back and forth

1. Build and install MR.
2. In System Settings > Night Color, change between Automatic and non-Automatic
modes and apply.
3. Check that the "Automatic Location for Night Color" service is correctly
running/not-running and autoload is enabled/disabled, in System Settings >
Background Services.
4. Repeat for back-and-forth.

M  +1-0kcms/nightcolor/CMakeLists.txt
M  +19   -1kcms/nightcolor/kcm.cpp
M  +3-0kcms/nightcolor/kcm.h
M  +17   -0libcolorcorrect/kded/locationupdater.cpp
M  +1-0libcolorcorrect/kded/locationupdater.h

https://invent.kde.org/plasma/plasma-workspace/commit/56ae8023b7fd11897ac6282d1f0930b85ea720ac

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

[plasmashell] [Bug 457993] installing digikam (+dependencies) breaks panel launcher widgets

2022-10-25 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=457993

Bharadwaj Raju  changed:

   What|Removed |Added

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

--- Comment #3 from Bharadwaj Raju  ---
Anything in logs? (Run "journalctl -f" then try clicking on the panel widget)

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

[plasmashell] [Bug 452258] Plasma crashes in PlasmaAppletItem::matches() when opening plasma widgets with the system language set to something other than English

2022-10-25 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=452258

Bharadwaj Raju  changed:

   What|Removed |Added

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

--- Comment #7 from Bharadwaj Raju  ---
for (const auto  : keywords) {
if (keyword.startsWith(pattern, Qt::CaseInsensitive)) {
return true;
}
}

> Seems like maybe keywords is empty, as right now we are assuming it's not.

That can't be it. If keywords was empty none of the loop body would have run.
And since from the trace it got into QString code means there was some QString
there which it operated on. The crash is somehow happening in Qt's string
comparison code itself. Maybe some invalid Unicode somewhere. It would be nice
to have the actual values of the strings being compared, if someone can use GDB
to get that.

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

[plasmashell] [Bug 460750] Do not disturb still has messages displayed

2022-10-25 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=460750

Bharadwaj Raju  changed:

   What|Removed |Added

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

--- Comment #10 from Bharadwaj Raju  ---
Is the DND setting global across multiple instances of the applet? The
multiscreen setup hints a bit towards that as a problem

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

[plasmashell] [Bug 456090] On Wayland, Panel widgets' tooltips are shown under kickoff

2022-10-25 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=456090

Bharadwaj Raju  changed:

   What|Removed |Added

 CC||bharadwaj.raju777@protonmai
   ||l.com
 Resolution|--- |WORKSFORME
 Status|CONFIRMED   |RESOLVED

--- Comment #2 from Bharadwaj Raju  ---
Cannot reproduce on git master with Kickoff beside Task Manager and some other
widgets. Looks like this is fixed. If you can reproduce on git master (or 5.26
maybe), please reopen.

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

[plasmashell] [Bug 457883] Reinstalling an app whose shortcut was previously deleted with kmenuedit does not recreate its shortcut in kickoff

2022-10-24 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=457883

Bharadwaj Raju  changed:

   What|Removed |Added

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

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

[plasmashell] [Bug 457883] Reinstalling an app whose shortcut was previously deleted with kmenuedit does not recreate its shortcut in kickoff

2022-10-23 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=457883

Bharadwaj Raju  changed:

   What|Removed |Added

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

--- Comment #1 from Bharadwaj Raju  ---
I'm not sure how exactly Kickoff should detect that the app was reinstalled.
And I'm not sure that it should be doing that even if it could. If the user
deleted the app entry, that's because they don't want to see it. And if they
reinstall it, presumably they *still* don't want to see it.

RESOLVED INTENTIONAL maybe?

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

[plasmashell] [Bug 447962] Kickoff sometimes loses Alt+F1 (Meta key) shortcut

2022-10-23 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=447962

Bharadwaj Raju  changed:

   What|Removed |Added

 Status|CONFIRMED   |RESOLVED
 Resolution|--- |FIXED
 CC||bharadwaj.raju777@protonmai
   ||l.com

--- Comment #17 from Bharadwaj Raju  ---
Closing since Meta activation no longer depends on Kickoff having Alt+F1.

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

[plasmashell] [Bug 459258] Running results of calculator runner does nothing

2022-10-23 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=459258

Bharadwaj Raju  changed:

   What|Removed |Added

 Status|CONFIRMED   |RESOLVED
 CC||bharadwaj.raju777@protonmai
   ||l.com
 Resolution|--- |FIXED

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

[gwenview] [Bug 458491] gwenview - cpu inefficiency while creating thumbnails

2022-10-23 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=458491

--- Comment #7 from Bharadwaj Raju  ---
Git commit 408ce1e7d4bd082378c1da685d01dcd5c6bf9a60 by Bharadwaj Raju, on
behalf of Nicolas Fella.
Committed on 23/10/2022 at 18:50.
Pushed by bharadwaj-raju into branch 'master'.

Don't attempt to load a nonexistant image when creating thumbnails

When given a path that doesn't exist QImage tries loading that path plus the
extensions of all image formats it knows

This  causes unneeded syscalls

We can check once whether the file exists and only attempt to load the image if
we know it is there

M  +4-0lib/thumbnailprovider/thumbnailprovider.cpp

https://invent.kde.org/graphics/gwenview/commit/408ce1e7d4bd082378c1da685d01dcd5c6bf9a60

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

[Spectacle] [Bug 458726] Taking a second screenshot in a row will result in nothing being copied to the clipboard

2022-10-22 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=458726

--- Comment #3 from Bharadwaj Raju  ---
(In reply to jimbo from comment #2)
> Strange thing is that if I copy an image selection in Krita, and then copy
> another one then the clipboard will update. Seems to be an issue only with
> the screenshot, so that kinda points back to Spectacle.

Does Krita copying work fine even if you clear the clipboard before testing?

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

[plasmashell] [Bug 460736] All tooltip previews show album art when one window of the app is exporting MPRIS data

2022-10-20 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=460736

--- Comment #3 from Bharadwaj Raju  ---
Isn't that Latte Dock? I guess Latte's fork/version of Task Manager doesn't
have that prevention logic.

This should be moved to the Latte Dock product.

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

[Spectacle] [Bug 433883] Spectacle isn't saving to clipboard whenever "Show message in a popup" is unticked and an alternative "Capture rectangular region" shortcut is defined

2022-10-15 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=433883

Bharadwaj Raju  changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED
  Latest Commit||https://invent.kde.org/grap
   ||hics/spectacle/commit/0a596
   ||7b069e2016ec3fe7d4610784370
   ||aad7e70f

--- Comment #5 from Bharadwaj Raju  ---
Git commit 0a5967b069e2016ec3fe7d4610784370aad7e70f by Bharadwaj Raju.
Committed on 15/10/2022 at 21:20.
Pushed by bharadwaj-raju into branch 'master'.

Add a small delay before exiting when notification is destroyed

The destruction of the notification object happens immediately if
Spectacle is blocked from showing notifications, and in such cases
it exits before data can be copied to the clipboard.

M  +5-3src/SpectacleCore.cpp

https://invent.kde.org/graphics/spectacle/commit/0a5967b069e2016ec3fe7d4610784370aad7e70f

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

[plasmashell] [Bug 407361] Notifications in the history lack interactive features that are in their pop-ups (click on body to jump to app, clickable buttons, draggable images, etc)

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

Bharadwaj Raju  changed:

   What|Removed |Added

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

--- Comment #25 from Bharadwaj Raju  ---
So do other DEs simply not care about the resident hint or what? If it's not
causing them any problems maybe we should do the same.

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

[Spectacle] [Bug 456399] 'Area' dropdown opens in wrong position after maximizing Spectacle on Wayland

2022-10-11 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=456399

--- Comment #7 from Bharadwaj Raju  ---
I see. And this happens with no other Qt app? Also what happens if you don't
maximize Spectacle, but just resize it? Do menus open in wrong positions then?

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

[Spectacle] [Bug 456399] 'Area' dropdown opens in wrong position after maximizing Spectacle on Wayland

2022-10-11 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=456399

--- Comment #5 from Bharadwaj Raju  ---
No I mean, is the position it opens in when maximized the same as the position
it should have opened in if it was opened when Spectacle wasn't maximized?
(Presumably Spectacle first opened unmaximized then you maximized it)

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

[Spectacle] [Bug 456399] 'Area' dropdown opens in wrong position after maximizing Spectacle on Wayland

2022-10-11 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=456399

--- Comment #3 from Bharadwaj Raju  ---
Is the wrong position where the menu should've opened if Spectacle wasn't
maximized?

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

[Spectacle] [Bug 444037] [Wayland] Location of a screenshot taken via keyboard shortcut is not copied to clipboard

2022-10-11 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=444037

Bharadwaj Raju  changed:

   What|Removed |Added

  Latest Commit||https://invent.kde.org/grap
   ||hics/spectacle/commit/c431a
   ||b3d2586d9e9377957307540414d
   ||48c92b75
 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED

--- Comment #11 from Bharadwaj Raju  ---
Git commit c431ab3d2586d9e9377957307540414d48c92b75 by Bharadwaj Raju.
Committed on 11/10/2022 at 11:44.
Pushed by bharadwaj-raju into branch 'master'.

Fix copying path to clipboard in ExportManager

We should be using KSystemClipboard there, not QApplication::clipboard or such

M  +3-1src/ExportManager.cpp

https://invent.kde.org/graphics/spectacle/commit/c431ab3d2586d9e9377957307540414d48c92b75

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

[plasmashell] [Bug 423745] Add the ability to delete inhibitions from the applet

2022-10-09 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=423745

--- Comment #13 from Bharadwaj Raju  ---
Maybe you were thinking of kde-inhibit? It doesn't delete inhibitions though,
it just *adds* an inhibition while a specified command runs.

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

[kdeplasma-addons] [Bug 457311] Color picker no longer sets left-clicked color to clipboard

2022-10-08 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=457311

Bharadwaj Raju  changed:

   What|Removed |Added

  Latest Commit|https://invent.kde.org/plas |https://invent.kde.org/plas
   |ma/kdeplasma-addons/commit/ |ma/kdeplasma-addons/commit/
   |3f3e3e9c8bd4761f9b1650e3b10 |6b809a159d010cab2065484c47b
   |135dfdae6fc6d   |a01599720d574

--- Comment #5 from Bharadwaj Raju  ---
Git commit 6b809a159d010cab2065484c47ba01599720d574 by Bharadwaj Raju.
Committed on 08/10/2022 at 15:25.
Pushed by bharadwaj-raju into branch 'Plasma/5.26'.

colorpicker: Make left-clicking a color copy in the default format

Also add a small "Copied!" message


(cherry picked from commit 3f3e3e9c8bd4761f9b1650e3b10135dfdae6fc6d)

M  +36   -3applets/colorpicker/package/contents/ui/main.qml

https://invent.kde.org/plasma/kdeplasma-addons/commit/6b809a159d010cab2065484c47ba01599720d574

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

[plasmashell] [Bug 456516] Media Player applet says 'No media playing' when I play specific videos with Celluloid or Totem players

2022-10-08 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=456516

Bharadwaj Raju  changed:

   What|Removed |Added

  Latest Commit|https://invent.kde.org/plas |https://invent.kde.org/plas
   |ma/plasma-workspace/commit/ |ma/plasma-workspace/commit/
   |62e5bb37a2c4751d5298aba8b49 |40b2226c92ba9dcc59b3c66cb4c
   |37feef31af9c9   |acb58788b08a4

--- Comment #7 from Bharadwaj Raju  ---
Git commit 40b2226c92ba9dcc59b3c66cb4cacb58788b08a4 by Bharadwaj Raju.
Committed on 08/10/2022 at 09:51.
Pushed by bharadwaj-raju into branch 'Plasma/5.26'.

If an app is playing media but hasn't provided a title, say as much instead of
"No media playing"

Certain apps, like GNOME's Totem, provide a very rudimentary MPRIS interface
with next-to-no
metadata. Currently the applet and lockscreen show "No media playing" when
these apps play something, which is
inaccurate. Change the message in case of (playing || paused) && !title to "No
title".


(cherry picked from commit 62e5bb37a2c4751d5298aba8b4937feef31af9c9)

M  +1-1applets/mediacontroller/contents/ui/AlbumArtStackView.qml
M  +5-1lookandfeel/org.kde.breeze/contents/lockscreen/MediaControls.qml

https://invent.kde.org/plasma/plasma-workspace/commit/40b2226c92ba9dcc59b3c66cb4cacb58788b08a4

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

[plasmashell] [Bug 456516] Media Player applet says 'No media playing' when I play specific videos with Celluloid or Totem players

2022-10-08 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=456516

Bharadwaj Raju  changed:

   What|Removed |Added

   Version Fixed In||5.26.1

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

[plasmashell] [Bug 456516] Media Player applet says 'No media playing' when I play specific videos with Celluloid or Totem players

2022-10-08 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=456516

Bharadwaj Raju  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|ASSIGNED|RESOLVED
  Latest Commit||https://invent.kde.org/plas
   ||ma/plasma-workspace/commit/
   ||62e5bb37a2c4751d5298aba8b49
   ||37feef31af9c9

--- Comment #6 from Bharadwaj Raju  ---
Git commit 62e5bb37a2c4751d5298aba8b4937feef31af9c9 by Bharadwaj Raju.
Committed on 08/10/2022 at 09:48.
Pushed by bharadwaj-raju into branch 'master'.

If an app is playing media but hasn't provided a title, say as much instead of
"No media playing"

Certain apps, like GNOME's Totem, provide a very rudimentary MPRIS interface
with next-to-no
metadata. Currently the applet and lockscreen show "No media playing" when
these apps play something, which is
inaccurate. Change the message in case of (playing || paused) && !title to "No
title".

M  +1-1applets/mediacontroller/contents/ui/AlbumArtStackView.qml
M  +5-1lookandfeel/org.kde.breeze/contents/lockscreen/MediaControls.qml

https://invent.kde.org/plasma/plasma-workspace/commit/62e5bb37a2c4751d5298aba8b4937feef31af9c9

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

[kate] [Bug 460113] large completions window when typing single letter in string literal

2022-10-08 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=460113

--- Comment #2 from Bharadwaj Raju  ---
This is supposed to be function signature completion, apparently. But obviously
firing at the wrong time. Can be disabled from "Show function signature when
typing function calls" in LSP plugin settings.

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

[kate] [Bug 460113] large completions window when typing single letter in string literal

2022-10-08 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=460113

Bharadwaj Raju  changed:

   What|Removed |Added

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

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

[Spectacle] [Bug 458726] Taking a second screenshot in a row will result in nothing being copied to the clipboard

2022-10-03 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=458726

Bharadwaj Raju  changed:

   What|Removed |Added

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

--- Comment #1 from Bharadwaj Raju  ---
Interestingly, this works without problems if the clipboard has something other
than an image already in it. If it has just one image then it goes wrong.

So I wonder if the bug isn't actually in Klipper or something.

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

[Spectacle] [Bug 444037] [Wayland] Location of a screenshot taken via keyboard shortcut is not copied to clipboard

2022-10-03 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=444037

--- Comment #9 from Bharadwaj Raju  ---
See also https://bugs.kde.org/show_bug.cgi?id=446884

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

[Spectacle] [Bug 444037] [Wayland] Location of a screenshot taken via keyboard shortcut is not copied to clipboard

2022-10-03 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=444037

--- Comment #8 from Bharadwaj Raju  ---
For one I think the "copy location to clipboard" shouldn't even be selectable
when autosave is off. The combination doesn't make sense

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

[Spectacle] [Bug 444037] [Wayland] Location of a screenshot taken via keyboard shortcut is not copied to clipboard

2022-10-03 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=444037

Bharadwaj Raju  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 CC||bharadwaj.raju777@protonmai
   ||l.com
 Status|REPORTED|CONFIRMED

--- Comment #7 from Bharadwaj Raju  ---
So there are multiple bugs described in here:

1. If autosave is off and copy-location is on, Spectacle main window will
display a false message that the image has been saved and its location copied,
despite none of the two things happening.

2. If autosave is off and copy-location is on and Spectacle is not running and
you take screenshot with a shortcut, it actually does save the image but
falsely says in the notification that its location has been copied.

3. If autosave is on and copy-location is on and Spectacle is not running and
you take screenshot with a shortcut, it saves the image but doesn't copy
location (and falsely says that it did).


For (2) I'm not sure what can sensibly be done in such a case. Just show a
notification with the image without saving or copying anything at all? Should
the notification be persistent in that case?

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

[Spectacle] [Bug 456890] Spectacle says picture has been copied to clipboard even when option is disabled

2022-10-03 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=456890

Bharadwaj Raju  changed:

   What|Removed |Added

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

--- Comment #1 from Bharadwaj Raju  ---
Can't reproduce. 5.26 master.

> EXPECTED RESULT
> Picutre should be on clipboard

Shouldn't the expected result be that the picture is *not* copied to the
clipboard, and no message is shown about it? (unless you explicitly click "Copy
Image to Clipboard" of course)

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

[Spectacle] [Bug 456399] 'Area' dropdown opens in wrong position after maximizing Spectacle on Wayland

2022-10-03 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=456399

Bharadwaj Raju  changed:

   What|Removed |Added

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

--- Comment #1 from Bharadwaj Raju  ---
Can't reproduce unfortunately. 5.26 master. Does it still happen for you? Does
it happen consistently or just once in a while?

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

[Spectacle] [Bug 427346] Embed date and the time in EXIF metadata

2022-10-03 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=427346

--- Comment #11 from Bharadwaj Raju  ---
(In reply to Méven Car from comment #10) 
> We would need to link to libpng, and re-use what Qt also does: 
> https://code.qt.io/cgit/qt/qtbase.git/tree/src/gui/image/qpnghandler.cpp#n786

Not necessary, QImageWriter has what we need:
https://doc.qt.io/qt-5/qimagewriter.html#setText

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

[Spectacle] [Bug 454838] Spectacle doesn't remember selected area when using background mode

2022-10-03 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=454838

Bharadwaj Raju  changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
  Latest Commit||https://invent.kde.org/grap
   ||hics/spectacle/commit/1678c
   ||db7df7bb205ce1df5cd92e7e0c9
   ||53711f4d
 Resolution|--- |FIXED

--- Comment #5 from Bharadwaj Raju  ---
Git commit 1678cdb7df7bb205ce1df5cd92e7e0c953711f4d by Bharadwaj Raju.
Committed on 03/10/2022 at 14:24.
Pushed by bharadwaj-raju into branch 'master'.

Make sure we save settings on exit even in new-instance mode

Otherwise things like region won't be saved with spectacle -bcri for example.

M  +1-0src/Main.cpp

https://invent.kde.org/graphics/spectacle/commit/1678cdb7df7bb205ce1df5cd92e7e0c953711f4d

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

[Spectacle] [Bug 427346] Embed date and the time in EXIF metadata

2022-10-03 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=427346

Bharadwaj Raju  changed:

   What|Removed |Added

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

--- Comment #9 from Bharadwaj Raju  ---
PNG doesn't have EXIF, it has its own metadata:
https://www.w3.org/TR/PNG/#11textinfo

If we add such a feature, it should probably be behind an option, I think? And
on or off by default?

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

[Spectacle] [Bug 441667] Spectacle can't capture for a particular combination of options

2022-10-03 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=441667

Bharadwaj Raju  changed:

   What|Removed |Added

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

--- Comment #3 from Bharadwaj Raju  ---
Can't reproduce unfortunately. I'm on Wayland, if that makes a difference.

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

[Spectacle] [Bug 433883] Spectacle isn't saving to clipboard whenever "Show message in a popup" is unticked and an alternative "Capture rectangular region" shortcut is defined

2022-10-03 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=433883

Bharadwaj Raju  changed:

   What|Removed |Added

 CC||ranaveer...@gmail.com

--- Comment #4 from Bharadwaj Raju  ---
*** Bug 451763 has been marked as a duplicate of this bug. ***

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

[Spectacle] [Bug 451763] Screenshot isn't copied to clipboard with notification popup turned off

2022-10-03 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=451763

Bharadwaj Raju  changed:

   What|Removed |Added

 CC||bharadwaj.raju777@protonmai
   ||l.com
 Status|REPORTED|RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #1 from Bharadwaj Raju  ---


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

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

[Spectacle] [Bug 433883] Spectacle isn't saving to clipboard whenever "Show message in a popup" is unticked and an alternative "Capture rectangular region" shortcut is defined

2022-10-03 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=433883

Bharadwaj Raju  changed:

   What|Removed |Added

 Status|REPORTED|CONFIRMED
 Ever confirmed|0   |1

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

[Spectacle] [Bug 433883] Spectacle isn't saving to clipboard whenever "Show message in a popup" is unticked and an alternative "Capture rectangular region" shortcut is defined

2022-10-03 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=433883

Bharadwaj Raju  changed:

   What|Removed |Added

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

--- Comment #2 from Bharadwaj Raju  ---
So what happens is that if notifications are disabled like that, the
KNotification object in Spectacle is destroyed immediately, and my guess is
that this is causing Spectacle to exit before the clipboard can be set. It
doesn't seem to matter what the shortcut is, though.

I wonder if just adding a short timer before emitting allDone would be enough.

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

[Spectacle] [Bug 456465] 'Launch without taking a screenshot' option from the context menu of Spectacle icon pinned to task manager does not work consistently

2022-10-03 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=456465

Bharadwaj Raju  changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED
  Latest Commit||https://invent.kde.org/grap
   ||hics/spectacle/commit/a7c86
   ||fe5474f14764c0998a1c62b30c3
   ||27603592

--- Comment #4 from Bharadwaj Raju  ---
Git commit a7c86fe5474f14764c0998a1c62b30c327603592 by Bharadwaj Raju.
Committed on 03/10/2022 at 09:56.
Pushed by bharadwaj-raju into branch 'master'.

Make sure to switch start mode to GUI when initiating GUI

Needed for cases where we're asked to launch the GUI but over DBus, like
OpenWithoutScreenshot.

M  +3-0src/SpectacleCore.cpp

https://invent.kde.org/graphics/spectacle/commit/a7c86fe5474f14764c0998a1c62b30c327603592

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

[Spectacle] [Bug 453846] Running spectacle under wayland gives a message "Could not take a screenshot. Please report this bug here.

2022-10-03 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=453846

Bharadwaj Raju  changed:

   What|Removed |Added

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

--- Comment #4 from Bharadwaj Raju  ---
Does `spectacle --new-instance` have the same behavior?

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

[Spectacle] [Bug 401327] Wish - Add option to include watermark in the screenshot

2022-10-02 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=401327

Bharadwaj Raju  changed:

   What|Removed |Added

 CC||bharadwaj.raju777@protonmai
   ||l.com
 Resolution|--- |FIXED
 Status|CONFIRMED   |RESOLVED

--- Comment #1 from Bharadwaj Raju  ---
Possible with the new Annotations feature.

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

[kinfocenter] [Bug 443569] Energy page: Layout for battery statistics wastes space and requires scrolling

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

Bharadwaj Raju  changed:

   What|Removed |Added

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

--- Comment #2 from Bharadwaj Raju  ---
The graph is much shorter in height now, at least on my system.

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

[plasmashell] [Bug 456516] Media Player applet says 'No media playing' when I play specific videos with Celluloid or Totem players

2022-09-30 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=456516

--- Comment #4 from Bharadwaj Raju  ---
Thanks. I think I've figured out why it is. Totem does provide an MPRIS
interface, but it is very rudimentary: it allows you to play/pause, but doesn't
provide any metadata like title, artist, filename, URL, etc.

So the applet takes this lack of information as "No media playing", but that's
incorrect. I guess in that case we should just show an icon without saying "No
media playing". I'll make an MR for that.

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

[plasmashell] [Bug 451329] Ability to blacklist applications from media player interface

2022-09-30 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=451329

Bharadwaj Raju  changed:

   What|Removed |Added

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

--- Comment #2 from Bharadwaj Raju  ---
(In reply to Nate Graham from comment #1)
> Making this configurable would certainly solve the issue, but I wonder if
> there's a generic way to filter out inappropriate entries like this one.

Maybe through length, like we do in task manager for short sounds?

Calls would probably take longer, but maybe the Teams MPRIS stream has some
metadata we can use to detect that. I don't use Teams, but if someone does, can
they open QDBusViewer, go to the mpris interface opened by Teams, then go to
org > mpris > MediaPlayer2 > org.mpris.MediaPlayer2.Player > Property Metadata,
and post the output?

Also possible duplicate https://bugs.kde.org/show_bug.cgi?id=429542

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

[plasmashell] [Bug 435479] PipeWire screencast request is loaded anyway when tooltips are disabled

2022-09-30 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=435479

Bharadwaj Raju  changed:

   What|Removed |Added

 CC||bharadwaj.raju777@protonmai
   ||l.com
 Status|REPORTED|RESOLVED
 Resolution|--- |FIXED

--- Comment #1 from Bharadwaj Raju  ---
Does not appear to be the case anymore in 5.26 master.

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

[plasmashell] [Bug 401012] Keyboard Layout icon is barely visible in system tray settings when using a dark theme for Plasma

2022-09-30 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=401012

Bharadwaj Raju  changed:

   What|Removed |Added

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

--- Comment #23 from Bharadwaj Raju  ---
Created attachment 152519
  --> https://bugs.kde.org/attachment.cgi?id=152519=edit
Screenshot on 5.26 master — bug not present

Cannot reproduce in 5.26 master. Icon is normal keyboard icon, even with dark
Plasma + light app theme.

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

[plasmashell] [Bug 435787] "rrow" doesn't find playback arrow buttons in Emoji selector, but "arrow" does

2022-09-30 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=435787

Bharadwaj Raju  changed:

   What|Removed |Added

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

--- Comment #2 from Bharadwaj Raju  ---
Right now they don't come up even with "arrow", and "arrow" doesn't seem to be
mentioned in their description.

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

[plasmashell] [Bug 456516] Media Player applet says 'No media playing' when I play specific videos with Celluloid or Totem players

2022-09-30 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=456516

--- Comment #2 from Bharadwaj Raju  ---
Correction: I meant to ask, do these players expose an MPRIS2 interface when
these specific videos are playing? If they don't, it would be a bug in those
players.

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

[plasmashell] [Bug 456516] Media Player applet says 'No media playing' when I play specific videos with Celluloid or Totem players

2022-09-30 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=456516

Bharadwaj Raju  changed:

   What|Removed |Added

 Resolution|--- |WAITINGFORINFO
 Status|REPORTED|NEEDSINFO
 CC||bharadwaj.raju777@protonmai
   ||l.com

--- Comment #1 from Bharadwaj Raju  ---
Do Celluloid and Totem have MPRIS2 support? You can check with either
QDbusViewer (search for "mpris"), or with command-line tools like playerctl. If
they don't have MPRIS2 support, we can't really do anything.

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

[plasmashell] [Bug 454353] [WAYLAND] Cannot copy string from clipboard to color field of solid color wallpaper

2022-09-30 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=454353

Bharadwaj Raju  changed:

   What|Removed |Added

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

--- Comment #2 from Bharadwaj Raju  ---
Can't reproduce on current Plasma Wayland on master. I can paste hex colors
into the "HTML" field from Kate or Firefox.

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

[plasmashell] [Bug 449036] Displayed name of a Bluetooth device's battery is an HID name, not the alias which you can set in preferences

2022-09-30 Thread Bharadwaj Raju
https://bugs.kde.org/show_bug.cgi?id=449036

Bharadwaj Raju  changed:

   What|Removed |Added

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

--- Comment #8 from Bharadwaj Raju  ---
The upstream issue linked seems to be fixed, can this be closed? I don't have a
Bluetooth device on hand which can confirm the fix.

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

<    1   2   3   4   5   6   >