[plasmashell] [Bug 472003] Clicking on apps' systray icons have no effect (regular applets work fine)

2023-08-19 Thread Yuking
https://bugs.kde.org/show_bug.cgi?id=472003

--- Comment #17 from Yuking  ---
(In reply to Kai Uwe Broulik from comment #16)
> Qt bug, potential fix submitted at
> https://codereview.qt-project.org/c/qt/qtdeclarative/+/497473

Solved with this patch. THX.

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

[plasmashell] [Bug 472003] Clicks on systray icons have no effect

2023-08-14 Thread Yuking
https://bugs.kde.org/show_bug.cgi?id=472003

--- Comment #13 from Yuking  ---
(In reply to Patrick Silva from comment #11)
> On neon unstable xembedsniproxy process restarts itself after being killed.

Maybe it is only for wine programs.

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

[plasmashell] [Bug 472003] Clicks on systray icons have no effect

2023-08-14 Thread Yuking
https://bugs.kde.org/show_bug.cgi?id=472003

--- Comment #12 from Yuking  ---
(In reply to Patrick Silva from comment #11)
> On neon unstable xembedsniproxy process restarts itself after being killed.

Try Moving xembedsniproxy to a new place (not in PATH) and then killing it.

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

[plasmashell] [Bug 472003] Clicks on systray icons have no effect

2023-08-13 Thread Yuking
https://bugs.kde.org/show_bug.cgi?id=472003

Yuking  changed:

   What|Removed |Added

 CC||yuking_...@sohu.com

--- Comment #10 from Yuking  ---
The same problem exists in today's git codes. Kill xembedsniproxy, the clicks
will works.

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

[Powerdevil] [Bug 348082] monitor is randomly powered back on

2021-10-29 Thread Yuking
https://bugs.kde.org/show_bug.cgi?id=348082

Yuking  changed:

   What|Removed |Added

 CC||yuking_...@sohu.com

--- Comment #27 from Yuking  ---
The problem still exists even no mouse and keyboard connected.

KDE Plasma Version: 5.23.80
KDE Frameworks Version: 5.88.0
Qt Version: 5.15.2
Kernel Version: 5.15.0-rc6 (64-bit)
Graphics Platform: X11
Processors: 24 × AMD Ryzen 9 3900X 12-Core Processor
Memory: 125.8 GiB of RAM
Graphics Processor: AMD Radeon VII

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

[Powerdevil] [Bug 423035] Turn off screen shortcut turns the screen back on automatically

2021-10-07 Thread Yuking
https://bugs.kde.org/show_bug.cgi?id=423035

Yuking  changed:

   What|Removed |Added

Version|5.22.4  |master
 CC||yuking_...@sohu.com

--- Comment #11 from Yuking  ---
Tthe screen turns back on after a few seconds even I use "xset dpms force off".

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

[kscreenlocker] [Bug 440350] Screensaver never runs after logon.

2021-07-31 Thread Yuking
https://bugs.kde.org/show_bug.cgi?id=440350

Yuking  changed:

   What|Removed |Added

 CC||yuking_...@sohu.com

--- Comment #9 from Yuking  ---
I think it is the same bug as https://bugs.kde.org/show_bug.cgi?id=357288, and
i am suffering from it. I am using an amd-3900X/X570 desktop computer.

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

[plasmashell] [Bug 371455] Slide show wallpaper massively slows down login when many images are configured

2020-02-11 Thread Yuking
https://bugs.kde.org/show_bug.cgi?id=371455

--- Comment #36 from Yuking  ---
The recent codes from git://anongit.kde.org changed, but now the desktop can
only slideshow the images in the last path when plasmashell exit last time, the
same bug as my patch in comment #28. 

So, was I right in my comment #31?

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

[plasmashell] [Bug 371455] Slide show wallpaper massively slows down login when many images are configured

2020-01-25 Thread Yuking
https://bugs.kde.org/show_bug.cgi?id=371455

--- Comment #31 from Yuking  ---
(In reply to Christian from comment #27)
> I have no experience in debugging KDE but started comparing versions and
> files because this bug is "bugging me".
> 
> Could it be that this commit introduced the behaviour? It's the only change
> I could find that seems to be related to the background slideshow.
> https://github.com/KDE/plasma-workspace/commit/
> ea32a7611227ca141bd60d983d1489d2be82d10f#diff-
> 821d7994d425d401a2d150dca027d8dc
> 
> My guess is that replacing the old code:
> m_timer.stop();
> m_slideshowBackgrounds.clear();
> m_unseenSlideshowBackgrounds.clear();
> BackgroundFinder *finder = new BackgroundFinder(this, m_dirs);
> m_findToken = finder->token();
> connect(finder, ::backgroundsFound, this,
> ::backgroundsFound);
> finder->start();
> 
> with the new code:
> m_timer.stop();
> m_slideshowModel->reload(m_slidePaths);
> connect(m_slideshowModel, ::done, this,
> ::backgroundsFound);
> 
> somehow causes the whole plasma background to wait until all the paths have
> been scanned. Maybe the purpose of starting the "finder" after connecting it
> was just this, to avoid the delay?
> 
> Just a guess.

In 5.16, a QStringList stores all pictures' paths, but the information of each
picture will not be checked before it is displayed. In 5.17, the QStringList is
removed, and all pictures' information are checked while creating the
background 's list. That is why it is so slow.
I tried to fixed it, but found the only way is rollbacking the codes to 5.16
...

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

[plasmashell] [Bug 371455] Slide show wallpaper massively slows down login when many images are configured

2020-01-22 Thread Yuking
https://bugs.kde.org/show_bug.cgi?id=371455

--- Comment #30 from Yuking  ---
(In reply to Christian from comment #27)
> I have no experience in debugging KDE but started comparing versions and
> files because this bug is "bugging me".
> 
> Could it be that this commit introduced the behaviour? It's the only change
> I could find that seems to be related to the background slideshow.
> https://github.com/KDE/plasma-workspace/commit/
> ea32a7611227ca141bd60d983d1489d2be82d10f#diff-
> 821d7994d425d401a2d150dca027d8dc
> 
> My guess is that replacing the old code:
> m_timer.stop();
> m_slideshowBackgrounds.clear();
> m_unseenSlideshowBackgrounds.clear();
> BackgroundFinder *finder = new BackgroundFinder(this, m_dirs);
> m_findToken = finder->token();
> connect(finder, ::backgroundsFound, this,
> ::backgroundsFound);
> finder->start();
> 
> with the new code:
> m_timer.stop();
> m_slideshowModel->reload(m_slidePaths);
> connect(m_slideshowModel, ::done, this,
> ::backgroundsFound);
> 
> somehow causes the whole plasma background to wait until all the paths have
> been scanned. Maybe the purpose of starting the "finder" after connecting it
> was just this, to avoid the delay?
> 
> Just a guess.

Sorry, that patch has big prolem, please ignore it...

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

[plasmashell] [Bug 371455] Slide show wallpaper massively slows down login when many images are configured

2020-01-22 Thread Yuking
https://bugs.kde.org/show_bug.cgi?id=371455

--- Comment #29 from Yuking  ---
(In reply to Christian from comment #27)
> I have no experience in debugging KDE but started comparing versions and
> files because this bug is "bugging me".
> 
> Could it be that this commit introduced the behaviour? It's the only change
> I could find that seems to be related to the background slideshow.
> https://github.com/KDE/plasma-workspace/commit/
> ea32a7611227ca141bd60d983d1489d2be82d10f#diff-
> 821d7994d425d401a2d150dca027d8dc
> 
> My guess is that replacing the old code:
> m_timer.stop();
> m_slideshowBackgrounds.clear();
> m_unseenSlideshowBackgrounds.clear();
> BackgroundFinder *finder = new BackgroundFinder(this, m_dirs);
> m_findToken = finder->token();
> connect(finder, ::backgroundsFound, this,
> ::backgroundsFound);
> finder->start();
> 
> with the new code:
> m_timer.stop();
> m_slideshowModel->reload(m_slidePaths);
> connect(m_slideshowModel, ::done, this,
> ::backgroundsFound);
> 
> somehow causes the whole plasma background to wait until all the paths have
> been scanned. Maybe the purpose of starting the "finder" after connecting it
> was just this, to avoid the delay?
> 
> Just a guess.

I committed a patch to fix this problem, please check it. It works well on my
plasma git-pulling tonight.

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

[plasmashell] [Bug 371455] Slide show wallpaper massively slows down login when many images are configured

2020-01-22 Thread Yuking
https://bugs.kde.org/show_bug.cgi?id=371455

--- Comment #28 from Yuking  ---
Created attachment 125304
  --> https://bugs.kde.org/attachment.cgi?id=125304=edit
Desktop will not be frooze while a large amount of images presented when in
slidemode

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

[plasmashell] [Bug 371455] Slide show wallpaper massively slows down login when many images are configured

2020-01-17 Thread Yuking
https://bugs.kde.org/show_bug.cgi?id=371455

--- Comment #26 from Yuking  ---
Waiting for fixing this problem. Hope it is not a long time.

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

[plasmashell] [Bug 371455] Slide show wallpaper massively slows down login when many images are configured

2019-12-26 Thread Yuking
https://bugs.kde.org/show_bug.cgi?id=371455

--- Comment #17 from Yuking  ---
Plasma works fine while just replacing plasma-workspace-5.17.4 with 5.16.4...

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

[plasmashell] [Bug 371455] Slide show wallpaper massively slows down login when many images are configured

2019-12-06 Thread Yuking
https://bugs.kde.org/show_bug.cgi?id=371455

--- Comment #13 from Yuking  ---
5.16.4 is OK, but 5.17.4 is very slow.
It seems that, in 5.17.4, the wallpaper plugin will check every image before
desktop is usable, so, if there has many many images, this procedure will be
very very slow.

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

[plasmashell] [Bug 414897] New: Desktop freezes very long time when there has large amount of wallpapers in slideshow mode.

2019-12-06 Thread Yuking
https://bugs.kde.org/show_bug.cgi?id=414897

Bug ID: 414897
   Summary: Desktop freezes very long time when there has large
amount of wallpapers in slideshow mode.
   Product: plasmashell
   Version: 5.17.4
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: Image Wallpaper
  Assignee: notm...@gmail.com
  Reporter: yuking_...@sohu.com
CC: plasma-b...@kde.org
  Target Milestone: 1.0

SUMMARY
Desktop freezes very long time when there has large amount of wallpapers in
slideshow mode. 

STEPS TO REPRODUCE
1. Every time when there has large amount of wallpapers.
2. 
3. 

OBSERVED RESULT


EXPECTED RESULT


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

ADDITIONAL INFORMATION

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

[plasmashell] [Bug 361516] Panel on top/left cause a black window in cube animation

2016-07-18 Thread Yuking via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=361516

Yuking <yuking_...@sohu.com> changed:

   What|Removed |Added

 CC||yuking_...@sohu.com

--- Comment #3 from Yuking <yuking_...@sohu.com> ---
I reproducted this bug on three different platforms. One is lfs compiled from
git, the other two are Arch running with different hardwares.

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


[plasmashell] [Bug 360333] New system tray: icons do not scale with panel height, stay very small

2016-03-13 Thread Yuking via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=360333

Yuking <yuking_...@sohu.com> changed:

   What|Removed |Added

 CC||yuking_...@sohu.com

--- Comment #5 from Yuking <yuking_...@sohu.com> ---
Have the same problem. 
lfs with today's git codes.

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