[latte-dock] [Bug 396542] New: Switching between windows of the same app using the Meta key and the KWin toggle

2018-07-15 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=396542

Bug ID: 396542
   Summary: Switching between windows of the same app using the
Meta key and the KWin toggle
   Product: latte-dock
   Version: 0.8.0
  Platform: Archlinux Packages
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: application
  Assignee: mvourla...@gmail.com
  Reporter: navarroa...@gmail.com
  Target Milestone: ---

Created attachment 113948
  --> https://bugs.kde.org/attachment.cgi?id=113948&action=edit
When I click on the app icon on v0.8.0

Hi!

In versions 0.7.x when I click on an app icon with several windows has the same
behavior like using the shortcut Meta+1: Opens the KWin toggle between windows
of the app.

In version 0.8.0 I when I click on the app icon on the panel I enter in the
KWin toogle present windows (I have attached an screenshot about this).

But when I use the shortcut Meta+1 I switch between windows of the same app
directly without KWin toggle, I have to use the Ctrl+F7 KWin shortcut to enter
to the toggle mode like latte-dock v0.7.


I prefer the toggle mode when I use the shortcut Meta+1, could you add a
preference to select which is the behaviour the user want?

Thanks!

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

[latte-dock] [Bug 396542] Switching between windows of the same app using the Meta key and the KWin toggle

2018-07-15 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=396542

--- Comment #2 from Axel  ---
Is it to hard add a checkbox to use the same behavior on mouse click and using
switch key?

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

[latte-dock] [Bug 396542] Switching between windows of the same app using the Meta key and the KWin toggle

2018-07-15 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=396542

--- Comment #4 from Axel  ---
(In reply to Michail Vourlakos from comment #3)
> (In reply to Axel from comment #2)
> > Is it to hard add a checkbox to use the same behavior on mouse click and
> > using switch key?
> 
> No it isnt but it is a design decision to not do it

So, is useless if I will try to send a PR with that. Maybe I can do it :)

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

[valgrind] [Bug 397313] New: False positive on long double "uninitialised bytes"

2018-08-09 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=397313

Bug ID: 397313
   Summary: False positive on long double "uninitialised bytes"
   Product: valgrind
   Version: 3.12 SVN
  Platform: Other
   URL: https://github.com/ornladios/ADIOS/issues/184#issuecom
ment-411739144
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: memcheck
  Assignee: jsew...@acm.org
  Reporter: axel.huebl@plasma.ninja
  Target Milestone: ---

The following minimal example leads to a false positive in long double
variables on uninitialized bytes:
(minimal example by Norbert Podhorszki, ORNL)

#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 

int main (int argc, char ** argv) 
{
charfilename[] = "test_longdouble_valgrind.data";
long double ld1 = 1.2345e+80;

long double *bufm = (long double *) malloc (sizeof(long double));
long double *bufc = (long double *) calloc (1, sizeof(long double));

memcpy (bufm, &ld1, sizeof(long double));
memcpy (bufc, &ld1, sizeof(long double));

int fd = creat(filename, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
write(fd, bufm, sizeof(long double));
write(fd, bufc, sizeof(long double));
close(fd);
free(bufm);
free(bufc);
return 0;
}

Valgrind complains about both the malloc'd and calloc'd buffers.

$ valgrind ./test_longdouble_valgrind 
==15574== Memcheck, a memory error detector
==15574== Copyright (C) 2002-2015, and GNU GPL'd, by Julian Seward et al.
==15574== Using Valgrind-3.11.0 and LibVEX; rerun with -h for copyright info
==15574== Command: ./test_longdouble_valgrind
==15574== 
==15574== Syscall param write(buf) points to uninitialised byte(s)
==15574==at 0x4F312C0: __write_nocancel (syscall-template.S:84)
==15574==by 0x40083F: main (in
/home/adios/work/test/other_tests/test_longdouble_valgrind)
==15574==  Address 0x520404a is 10 bytes inside a block of size 16 alloc'd
==15574==at 0x4C2DB8F: malloc (in
/usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==15574==by 0x4007D8: main (in
/home/adios/work/test/other_tests/test_longdouble_valgrind)
==15574== 
==15574== Syscall param write(buf) points to uninitialised byte(s)
==15574==at 0x4F312C0: __write_nocancel (syscall-template.S:84)
==15574==by 0x400855: main (in
/home/adios/work/test/other_tests/test_longdouble_valgrind)
==15574==  Address 0x520409a is 10 bytes inside a block of size 16 alloc'd
==15574==at 0x4C2FB55: calloc (in
/usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==15574==by 0x4007EB: main (in
/home/adios/work/test/other_tests/test_longdouble_valgrind)


We are aware of the limitations listed here
  http://valgrind.org/docs/manual/manual-core.html#manual-core.limits
but this still seems to be a bug.


Further information:
https://github.com/ornladios/ADIOS/issues/184#issuecomment-411728907

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

[valgrind] [Bug 397313] False positive on long double "uninitialised bytes"

2018-08-09 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=397313

--- Comment #1 from Axel  ---
Additional system information:

Linux 4.9.0-5-amd64 x86_64 GNU/Linux
gcc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516
sizeof(long double) == 16

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

[kopete] [Bug 392250] some libraries don't have a proper soversion

2018-04-04 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=392250

--- Comment #1 from Axel  ---
confirm

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

[kopete] [Bug 392250] some libraries don't have a proper soversion

2018-03-24 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=392250

Axel  changed:

   What|Removed |Added

 CC||wildsn...@mail.ru

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

[kdeconnect] [Bug 384315] Desktop SMS Reply with Signal App: Outgoing Message in Wrong App

2017-09-03 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=384315

Axel  changed:

   What|Removed |Added

 CC||axel.huebl@plasma.ninja

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

[kdeconnect] [Bug 384315] New: Desktop SMS Reply with Signal App: Outgoing Message in Wrong App

2017-09-03 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=384315

Bug ID: 384315
   Summary: Desktop SMS Reply with Signal App: Outgoing Message in
Wrong App
   Product: kdeconnect
   Version: unspecified
  Platform: Debian stable
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: android-application
  Assignee: albertv...@gmail.com
  Reporter: axel.huebl@plasma.ninja
  Target Milestone: ---

Hi,

thank you all for kde-connect, it's just awesome!

Today I realized that sending a quick-reply SMS via the Desktop App does not
show the SMS in the sent history of Signal (Secure Messenger App). As the
receiver confirmed, the SMS itself was sent. My sent SMS does show up in in the
system's pre-installed messenger App.

Other information:
- Signal is configured to be the default SMS App. Opening the pre-installed
messenger App also confirms that.
- I did sent a regular SMS to a contact I am not connected with via encrypted
Signal Messaging.

I am not sure how complicated that is, but maybe one can add an integration
into non-default messenger Apps or specifically the Signal sent history? Maybe
the changed default SMS App is just not honored properly?

My System stats are:

Debian Liunux 9.1 "stretch"
Android 7.1.1 (Oxygen OS 4.1.7)
KDEConnect App 1.6.6 (F-Droid Version)
KDEConnect 1.0.1-1+b2 (Debian Package)
Signal App 4.9.9

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

[kdeconnect] [Bug 384315] Desktop SMS Reply with Signal App: Outgoing Message in Wrong App

2017-09-03 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=384315

--- Comment #1 from Axel  ---
The suggestion is not fomulated very clear. I wanted to ask for:

"Maybe one can add an integration into the actual default messenger App if the
default was changed from the pre-installed app to an other (such as Signal)?"

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

[plasmashell] [Bug 479116] Window bounces up and down when moving near a floating panel

2024-02-13 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=479116

Axel  changed:

   What|Removed |Added

 CC||indigosk...@gmail.com

--- Comment #2 from Axel  ---
Created attachment 165813
  --> https://bugs.kde.org/attachment.cgi?id=165813&action=edit
Video bug

Still reproducible on the latest unstable Neon version:

OBSERVED RESULT
Minimized window bounces back.

EXPECTED RESULT
Should merge flawlessly with the floating panel

Operating System: KDE neon Unstable Edition
KDE Plasma Version: 6.0.80
KDE Frameworks Version: 6.0.0
Qt Version: 6.6.1
Kernel Version: 6.5.0-15-generic (64-bit)
Graphics Platform: Wayland
Processors: 6 × Intel® Core™ i5-9400T CPU @ 1.80GHz
Memory: 15.4 GiB of RAM
Graphics Processor: Mesa Intel® UHD Graphics 630
Manufacturer: HP
Product Name: HP Pavilion All-in-One 24-xa0xxx

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

[konsole] [Bug 405345] Impossible to print "bold red". Bold is always printed as intense/light color

2020-12-11 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=405345

Axel  changed:

   What|Removed |Added

 CC||navarroa...@gmail.com

--- Comment #13 from Axel  ---
Created attachment 133999
  --> https://bugs.kde.org/attachment.cgi?id=133999&action=edit
Git commit template comments no visible

I'm using the nano-syntax-highlighting package in Arch Linux and the git commit
template's colors are broken

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

[konsole] [Bug 405345] Impossible to print "bold red". Bold is always printed as intense/light color

2020-12-11 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=405345

--- Comment #14 from Axel  ---
Created attachment 134000
  --> https://bugs.kde.org/attachment.cgi?id=134000&action=edit
The git commit template when I remove the # at the beginning of the line

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

[konsole] [Bug 405345] Impossible to print "bold red". Bold is always printed as intense/light color

2020-12-11 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=405345

--- Comment #16 from Axel  ---
Created attachment 134002
  --> https://bugs.kde.org/attachment.cgi?id=134002&action=edit
git commit template in Konsole 20.08.3

This is the same colors for Konsole 20.08.3.

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

[konsole] [Bug 420503] konsole 20.04 steals Alt+n switch to tab shorcuts configured on yakuake

2020-06-01 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=420503

Axel  changed:

   What|Removed |Added

  Latest Commit||https://invent.kde.org/util
   ||ities/konsole/commit/13697e
   ||07d9290f3c14d57ec27884bb975
   ||6999f27
 Status|CONFIRMED   |RESOLVED
 Resolution|--- |FIXED

--- Comment #7 from Axel  ---
Git commit 13697e07d9290f3c14d57ec27884bb9756999f27 by Axel Navarro.
Committed on 01/06/2020 at 03:26.
Pushed by tcanabrava into branch 'release/20.04'.

Fix override switch-to-tab action in Yakuake

Add the switch-to-tab-%i actions in ViewManager to the
_multiTabOnlyActions collection to allow override them in Yakuake

M  +1-0src/ViewManager.cpp

https://invent.kde.org/utilities/konsole/commit/13697e07d9290f3c14d57ec27884bb9756999f27

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

[kate] [Bug 422408] New: Uninstaller doesn't remove "Edit with Kate" option

2020-06-03 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=422408

Bug ID: 422408
   Summary: Uninstaller doesn't remove "Edit with Kate" option
   Product: kate
   Version: unspecified
  Platform: MS Windows
OS: Microsoft Windows
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: application
  Assignee: kwrite-bugs-n...@kde.org
  Reporter: axellex...@gmail.com
  Target Milestone: ---

Windows uninstaller doesn't work properly and doesn't remove the "Edit with
Kate" option after the uninstall of the software

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

[konsole] [Bug 418305] some Ctrl + shortcut stopped functioning

2020-06-14 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=418305

Axel  changed:

   What|Removed |Added

 CC||navarroa...@gmail.com

--- Comment #1 from Axel  ---
This is working properly in Archlinux
Konsole version: 20.04.2
KDE Plasma Version: 5.19.0
KDE Frameworks Version: 5.70.0
Qt Version: 5.15.0

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

[konsole] [Bug 415164] ctrl+alt+(left|right) conflict on yakuake

2020-06-15 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=415164

Axel  changed:

   What|Removed |Added

  Latest Commit||https://invent.kde.org/util
   ||ities/konsole/commit/020f56
   ||5572c1e8a6f5b7910d060c45b93
   ||e056db3
 Resolution|--- |FIXED
 Status|CONFIRMED   |RESOLVED

--- Comment #6 from Axel  ---
Git commit 020f565572c1e8a6f5b7910d060c45b93e056db3 by Axel Navarro.
Committed on 13/06/2020 at 23:01.
Pushed by hindenburg into branch 'master'.

Fix shortcuts for Yakuake grow-terminal actions

Add the move-tab-to-right and move-tab-to-left actions in
ViewManager to the _multiTabOnlyActions collection to allow
override them in Yakuake with grow-terminal-right and
grow-terminal-left

M  +2-0src/ViewManager.cpp

https://invent.kde.org/utilities/konsole/commit/020f565572c1e8a6f5b7910d060c45b93e056db3

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

[konsole] [Bug 424839] Home and delete key don't work

2020-08-11 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=424839

Axel  changed:

   What|Removed |Added

 CC||navarroa...@gmail.com

--- Comment #1 from Axel  ---
I can't see this bug in Arch Linux with the same Plasma and Framework versions
for Konsole 20.04.3 and 20.08.

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

[konsole] [Bug 425398] new-tab does not open a new tab, opens a new window

2020-08-15 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=425398

Axel  changed:

   What|Removed |Added

 CC||navarroa...@gmail.com

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

[konsole] [Bug 364098] In split pane view konsole should respect focus follows mouse but doesn't

2020-08-17 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=364098

Axel  changed:

   What|Removed |Added

 CC||navarroa...@gmail.com

--- Comment #14 from Axel  ---
The patch works properly.

Luc, could you send the merge request? https://invent.kde.org/utilities/konsole

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

[konsole] [Bug 425414] Vertical blue line artifact when text is scrolling fast

2020-08-19 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=425414

--- Comment #3 from Axel  ---
Hi, I saw 2 bug reports about this new feature: what if we add something
like "What's new" similar to Chrome and Firefox DevTools have.

I don't know if we can highlight the *What's new* in the menu or a
notification when the first time Konsole is opened and the app was upgraded
from 20.08 to 20.12

I know about this page
https://kde.org/announcements/releases/2020-08-apps-update/ but it is not
visible enough.

*Axel Navarro*


On Sun, Aug 16, 2020 at 7:54 AM Derek Christ 
wrote:

> https://bugs.kde.org/show_bug.cgi?id=425414
>
> Derek Christ  changed:
>
>What|Removed |Added
>
> 
>  Ever confirmed|0   |1
>  CC||christ.de...@gmail.com
>  Status|REPORTED|CONFIRMED
>
> --- Comment #1 from Derek Christ  ---
> Can confirm.
>
> Operating System: Manjaro Linux
> KDE Plasma Version: 5.19.4
> KDE Frameworks Version: 5.73.0
> Qt Version: 5.15.0
> Kernel Version: 5.7.14-1-MANJARO
> OS Type: 64-bit
> Processors: 8 × Intel® Core™ i5-8250U CPU @ 1.60GHz
> Memory: 7.6 GiB of RAM
> Graphics Processor: Mesa Intel® UHD Graphics 620
>
> --
> You are receiving this mail because:
> You are the assignee for the bug.

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

[konsole] [Bug 425550] New: I can't see the thumbnails 20.08

2020-08-19 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=425550

Bug ID: 425550
   Summary: I can't see the thumbnails 20.08
   Product: konsole
   Version: 20.08.0
  Platform: Archlinux Packages
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: konsole-de...@kde.org
  Reporter: navarroa...@gmail.com
  Target Milestone: ---

Created attachment 131012
  --> https://bugs.kde.org/attachment.cgi?id=131012&action=edit
The thumbnails are not displayed

SUMMARY
I can't see the thumbnails using bash in Konsole 20.08.

STEPS TO REPRODUCE
1. Open Konsole
2. ls in a folder with pictures
3. The thumbnail is not displayed

OBSERVED RESULT
I can't see the thumbnails

EXPECTED RESULT
I should see the thumbnails of the pictures with mouse over


SOFTWARE/OS VERSIONS
Linux/KDE Plasma: Arch Linux
KDE Plasma Version: 5.19.4
KDE Frameworks Version: 5.73
Qt Version: 5.15

ADDITIONAL INFORMATION
An screenshot was attached.

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

[konsole] [Bug 425550] I can't see the thumbnails 20.08

2020-08-19 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=425550

Axel  changed:

   What|Removed |Added

 Resolution|FIXED   |NOT A BUG

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

[konsole] [Bug 425550] I can't see the thumbnails 20.08

2020-08-19 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=425550

Axel  changed:

   What|Removed |Added

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

--- Comment #2 from Axel  ---
I known it!

I known that this was a misconfiguration issue but I couldn't find how to fix
it.

Thanks!

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

[dolphin] [Bug 425776] New: Add a "quiet" mode to dolphin

2020-08-25 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=425776

Bug ID: 425776
   Summary: Add a "quiet" mode to dolphin
   Product: dolphin
   Version: 20.08.0
  Platform: Archlinux Packages
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: dolphin-bugs-n...@kde.org
  Reporter: navarroa...@gmail.com
CC: kfm-de...@kde.org
  Target Milestone: ---

SUMMARY
As a user I want to start a dolphin in the background from my command line
without receive output from the dolphin process.

STEPS TO REPRODUCE
1. Start a dolphin with "dolphin > /dev/null &"
2. The shell still receives the output from stderr

OBSERVED RESULT
$  dolphin > /dev/null &
[1] 14361
$ kf.itemviews: User of KWidgetItemDelegate should not delete widgets created
by createItemWidgets!
kf.itemviews: User of KWidgetItemDelegate should not delete widgets created by
createItemWidgets!
kf.itemviews: User of KWidgetItemDelegate should not delete widgets created by
createItemWidgets!

EXPECTED RESULT
Use "dolphin --silent" or "dolphin --quiet" to stop receiving stdout or stderr
from the dolphin process.

SOFTWARE/OS VERSIONS
Linux/KDE Plasma: Arch Linux
(available in About System)
KDE Plasma Version: 5.19.4
KDE Frameworks Version: 5.73.0
Qt Version: 5.15.0

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

[konsole] [Bug 415164] ctrl+alt+(left|right) conflict on yakuake

2020-04-29 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=415164

Axel  changed:

   What|Removed |Added

 CC||navarroa...@gmail.com

--- Comment #5 from Axel  ---
Can I dock the Konsole like Yakuake?

I just delete this lines of code from src/ViewManager.cpp and compiled the
20.04 tag to fix the compatibility with Yakuake.


// only add default shortcut bindings for the first 9 tabs, regardless of
SWITCH_TO_TAB_COUNT
if (i < 9) {
  collection->setDefaultShortcut(action, QStringLiteral("Alt+%1").arg(i + 1));
}

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

[konsole] [Bug 420503] konsole 20.04 steals Alt+n switch to tab shorcuts configured on yakuake

2020-04-24 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=420503

Axel  changed:

   What|Removed |Added

 CC||navarroa...@gmail.com

--- Comment #1 from Axel  ---
I can confirm this bug in Archlinux too. The only workaround I found was
downgraded Konsole to v19.12.3.

I tried to find the global shortcut but I found nothing.
Konsole can use the Alt+ to switch between tabs without issues. I removed
this, but Yakuake is still throwing the dialog.
I tested the live Kubuntu 20.04 and works fine but is using the KDE apps at
v19.12.3, not latest v20.04.
I downgraded the Yakuake to v19.12.3, and the error is still happening.
I uninstalled Yakuake, removed ~/.config/yakuakerc, reinstall latest, and still
happening.

So, I thing there is some other KDE app v20.04 that has that shortcut set, but
I can't find it.

I run this command, but I can't find a Alt+2 shortcut

grep Alt+
{~/.config/kdeglobals,~/.config/kglobalshortcutsrc,~/.config/khotkeysrc,~/.config/kwinrc,~/.config/plasma-org.kde.plasma.desktop-appletsrc,~/.local/share/kxmlgui5/katepart/katepart5ui.rc,~/.local/share/kxmlgui5/konsole/konsoleui.rc,~/.local/share/kxmlgui5/konsole/sessionui.rc,~/.local/share/kxmlgui5/kwrite/kwriteui.rc}

My ~/.config/yakuakerc

[Appearance]
TerminalHighlightOnManualActivation=true
Translucency=true

[Desktop Entry]
DefaultProfile=

[Dialogs]
FirstRun=false

[Favorite Profiles]
Favorites=Profile 1.profile

[Shortcuts]
switch-to-session-1=Alt+1
switch-to-session-10=Alt+0
switch-to-session-2=Alt+2
switch-to-session-3=Alt+3
switch-to-session-4=Alt+4
switch-to-session-5=Alt+5
switch-to-session-6=Alt+6
switch-to-session-7=Alt+7
switch-to-session-8=Alt+8
switch-to-session-9=Alt+9

[Window]
DynamicTabTitles=true
Height=80

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

[valgrind] [Bug 397313] False positive on long double "uninitialised bytes"

2019-01-30 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=397313

--- Comment #4 from Axel  ---
Thanks, that's understandable.

But since it's ok for a long double to only store its values in 80 bits, what
shall we do about it? Should that specific case be suppressed by valgrind?

Address/memory sanitizers seem to handle our snippets gracefully:

clang -g -fsanitize=address main.c && ./a.out
clang -g -fsanitize=memory main.c && ./a.out
gcc -g -fsanitize=address main.c && ./a.out

(all ok)

clang -g main.c && valgrind --track-origins=yes ./a.out

(this report)

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

[kdeconnect] [Bug 470085] App does not reconnect on wifi connect

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

--- Comment #3 from Axel  ---
That's a different but maybe not completely separate issue. Both my computer
and the phone have only one link to the local network. If my phone does
connect, only one TCP connection is established.

Your comment got me to look at this closer again, and I might have been misled
by the Background execution not allowed message. I still get that message, but
a few seconds later I also get onNetworkChange from the KDE Connect service:

08-14 16:48:00.436   965  1031 W BroadcastQueue: Background execution not
allowed: receiving Intent { act=android.net.wifi.WIFI_STATE_CHANGED
flg=0x410 (has extras) } to
org.kde.kdeconnect_tp/org.kde.kdeconnect.KdeConnectBroadcastReceiver
[...]
08-14 16:48:05.194 30572 30623 D KDE/BackgroundService: onNetworkChange

I checked with Wireshark and my computer does not receive any broadcasts from
the phone (it does if I restart the KDE Connect service on the phone).
There are no later log messages from the KDE Connect app.

I don't see anywhere in LanLinkProvider.sendUdpIdentityPacket(List
ipList) that the socket for broadcasting the identity packet is bound to an
interface resp. address.
If I interpret Android's logs correctly at the time onNetworkChange is called
the wifi network is not yet the default, a few hundred ms later I see messages
like these:

08-14 16:48:05.416   965  1248 D SemHotspotMobileDataLimit: Default network
changed to : 507
[...]
08-14 16:48:05.425   965  1213 D ConnectivityService: Sending DISCONNECTED
broadcast for type 0 [502 CELLULAR] isDefaultNetwork=true
[...]
08-14 16:48:05.427   965  1213 D ConnectivityService: Sending CONNECTED
broadcast for type 1 [507 WIFI] isDefaultNetwork=true

I guess the broadcast gets send over the wrong link, cellular instead of wifi.
I'll try if I can validate if this is the cause for this issue.

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

[kdeconnect] [Bug 470085] App does not reconnect on wifi connect

2023-08-15 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=470085

--- Comment #4 from Axel  ---
The identity packet is broadcast on the wrong network interface because
onNetworkChange is called before the wifi interface becomes the default.

I logged the current default network in sendUdpIdentityPacket:

diff --git a/src/org/kde/kdeconnect/Backends/LanBackend/LanLinkProvider.java
b/src/org/kde/kdeconnect/Backends/LanBackend/LanLinkProvider.java
index e7983928..651b9025 100644
--- a/src/org/kde/kdeconnect/Backends/LanBackend/LanLinkProvider.java
+++ b/src/org/kde/kdeconnect/Backends/LanBackend/LanLinkProvider.java
@@ -368,6 +375,11 @@ public class LanLinkProvider extends BaseLinkProvider {
 return;
 }

+ConnectivityManager connectivityManager =
this.context.getSystemService(ConnectivityManager.class);
+Network network = connectivityManager.getActiveNetwork();
+LinkProperties linkProperties =
connectivityManager.getLinkProperties(network);
+Log.i("LanLinkProvider", "default network interface: " +
linkProperties.getInterfaceName());
+
 NetworkPacket identity = NetworkPacket.createIdentityPacket(context);
 identity.set("tcpPort", tcpServer.getLocalPort());

and got the cellular interface instead of wifi:

2023-08-15 16:25:14.906 21199-21239 KDE/BackgroundService  
org.kde.kdeconnect_tpD  onNetworkChange
2023-08-15 16:25:14.933 21199-21294 LanLinkProvider
org.kde.kdeconnect_tpI  default network interface: rmnet0

to validate this I put a 500ms sleep before the call to sendUdpIdentityPacket
in broadcastUdpIdentityPacket and got the correct interface and the phone
connected to the computer:

2023-08-15 16:27:23.245 21637-21683 KDE/BackgroundService  
org.kde.kdeconnect_tpD  onNetworkChange
2023-08-15 16:27:23.751 21637-21687 LanLinkProvider
org.kde.kdeconnect_tpI  default network interface: wlan0
2023-08-15 16:27:23.786 21637-21687 KDE/LanLinkProvider
org.kde.kdeconnect_tpI  identity packet received from a TCP
connection from [...]

I removed the sleep and hacked onNetworkChange to pass the new network from the
callback on to sendUdpIdentityPacket and bind the socket to the right
interface:

diff --git a/src/org/kde/kdeconnect/BackgroundService.java
b/src/org/kde/kdeconnect/BackgroundService.java
index 10c73ab2..b37aa6c8 100644
--- a/src/org/kde/kdeconnect/BackgroundService.java
+++ b/src/org/kde/kdeconnect/BackgroundService.java
@@ -136,7 +136,7 @@ public class BackgroundService extends Service {
 @Override
 public void onAvailable(Network network) {
 connectedToNonCellularNetwork.postValue(true);
-onNetworkChange();
+onNetworkChange(network);
 }
 @Override
 public void onLost(Network network) {
diff --git a/src/org/kde/kdeconnect/Backends/LanBackend/LanLinkProvider.java
b/src/org/kde/kdeconnect/Backends/LanBackend/LanLinkProvider.java
index e7983928..dc6c391e 100644
--- a/src/org/kde/kdeconnect/Backends/LanBackend/LanLinkProvider.java
+++ b/src/org/kde/kdeconnect/Backends/LanBackend/LanLinkProvider.java
 });
 }

 @WorkerThread
-public void sendUdpIdentityPacket(List ipList) {
+public void sendUdpIdentityPacket(Network network, List
ipList) {
 if (tcpServer == null || !tcpServer.isBound()) {
 Log.i("LanLinkProvider", "Won't broadcast UDP packet if TCP socket
is not ready yet");
 return;
 }

@@ -382,11 +397,17 @@ public class LanLinkProvider extends BaseLinkProvider {
 DatagramSocket socket;
 try {
 socket = new DatagramSocket();
+if (network != null) {
+network.bindSocket(socket);
+}
 socket.setReuseAddress(true);
 socket.setBroadcast(true);
 } catch (SocketException e) {
 Log.e("KDE/LanLinkProvider", "Failed to create DatagramSocket",
e);
 return;
 }

Works fine but should probably be done a bit more careful for real:

2023-08-15 16:49:26.104 22943-22985 KDE/BackgroundService  
org.kde.kdeconnect_tpD  onNetworkChange
2023-08-15 16:49:26.111 22943-22992 LanLinkProvider
org.kde.kdeconnect_tpI  default network interface: rmnet0
2023-08-15 16:49:26.115 22943-22992 LanLinkProvider
org.kde.kdeconnect_tpI  callback network interface: wlan0
2023-08-15 16:49:26.146 22943-22992 KDE/LanLinkProvider
org.kde.kdeconnect_tpI  identity packet received from a TCP
connection from [...]

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

[Haruna] [Bug 441256] Feature request: switch to force single instance

2023-08-21 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=441256

--- Comment #8 from Axel  ---
Awesome, thanks a lot!

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

[kdeconnect] [Bug 470085] App does not reconnect on wifi connect

2023-08-22 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=470085

--- Comment #8 from Axel  ---
I created a merge request using bindProcessToNetwork as you suggested, it works
just as well and is a lot simpler.

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

[Haruna] [Bug 471245] Sometimes when opening from a file Haruna doesn't inhibit power saving

2023-08-24 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=471245

Axel  changed:

   What|Removed |Added

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

--- Comment #2 from Axel  ---
Haruna 0.11.3
Frameworks 108
Qt 5.15.10
Plasma 5.27.7

Fairly easy to reproduce for me, just tried rn first time worked, closed haruna
and opened the file again from dolphin n the bug appeared

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

[plasmashell] [Bug 435600] Noticeable Delay switching between Kickoff categories

2024-02-03 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=435600

Axel  changed:

   What|Removed |Added

 CC||indigosk...@gmail.com

--- Comment #11 from Axel  ---
Created attachment 165498
  --> https://bugs.kde.org/attachment.cgi?id=165498&action=edit
Selector stuck doesnt follow mouse cursor

Selector stuck doesnt follow mouse cursor

2 February 2024. Ive seen this bug previously, however what I had seen was a
variation of this. 

Moving the mouse cursor on the right part works flawlessly, but in the
application folders sometimes the selection gets stuck on the last folder and
doesnt follow the mouse cursor. Also there is still a noticeable delay though
less severe than the one appearing in the first post.

Picture of the bug taken today. if mouse cursor unmoved the selector remains
stuck there indefinitely

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

[plasmashell] [Bug 480782] New: Neon Colour appears around the floating panel bar when another window merges fast

2024-02-03 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=480782

Bug ID: 480782
   Summary: Neon Colour appears around the floating panel bar when
another window merges fast
Classification: Plasma
   Product: plasmashell
   Version: master
  Platform: openSUSE
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: Panel
  Assignee: plasma-b...@kde.org
  Reporter: indigosk...@gmail.com
CC: niccolo.venera...@gmail.com
  Target Milestone: 1.0

SUMMARY
***
Neon Colour appears around the floating panel bar when another window merges
fast
***


STEPS TO REPRODUCE
1. Open Firefox or Dolphin and maximize the window (Full)
2. Make sure its the only window (no other windows behind) in that screen.
3. Click on its corresponding icon on the panel icon **several times** (as to
make it appear and disappear) 
4. Youll see a purple neon color appear around the main dock panel when it goes
from floating to fixed and vice-versa.


*A. This can also be reproduced by holding a small window and merging it with
the floating panel (though its happens less often). To add, there is also a
weird bump on the merging window when doing this which could be considering as
a bug. 
*B. Ignore the shaking Firefox window in the video as its unrelated and it
doesnt happen IRL.  

OBSERVED RESULT
Youll see a purple neon color appear around the main dock panel when it goes
from floating to fixed and vice-versa. https://imgur.com/a/6412nm9

EXPECTED RESULT
Normal resize of the floating panel with no colors around it.

Operating System: KDE neon Unstable Edition
KDE Plasma Version: 6.0.80
KDE Frameworks Version: 6.0.0
Qt Version: 6.6.1
Kernel Version: 6.5.0-15-generic (64-bit)
Graphics Platform: Wayland
Processors: 6 × Intel® Core™ i5-9400T CPU @ 1.80GHz
Memory: 15.4 GiB of RAM
Graphics Processor: Mesa Intel® UHD Graphics 630
Manufacturer: HP
Product Name: HP Pavilion All-in-One 24-xa0xxx

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

[Discover] [Bug 480783] New: Discover intense stutter when resizing window

2024-02-03 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=480783

Bug ID: 480783
   Summary: Discover intense stutter when resizing window
Classification: Applications
   Product: Discover
   Version: master
  Platform: Neon
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: discover
  Assignee: plasma-b...@kde.org
  Reporter: indigosk...@gmail.com
CC: aleix...@kde.org
  Target Milestone: ---

Created attachment 165500
  --> https://bugs.kde.org/attachment.cgi?id=165500&action=edit
Bug video

SUMMARY
***
Discover stutters intensely when resizing. Seen for the past 2 years (not
related to Plasma 6, it also happened in 5.26 and 5.27). It only happens in the
Discover window in Wayland.

This response was given previously, so it can shed some light into the problem: 
"Is Discover a Kirigami/QML app? If yes, then this has nothing to do with
X/Wayland but a QT/QML issue."
***

STEPS TO REPRODUCE
1. Resize Discover from the corner of the window

OBSERVED RESULT
Intense stuttering

EXPECTED RESULT
No stutter

Operating System: KDE neon Unstable Edition
KDE Plasma Version: 6.0.80
KDE Frameworks Version: 6.0.0
Qt Version: 6.6.1
Kernel Version: 6.5.0-15-generic (64-bit)
Graphics Platform: Wayland
Processors: 6 × Intel® Core™ i5-9400T CPU @ 1.80GHz
Memory: 15.4 GiB of RAM
Graphics Processor: Mesa Intel® UHD Graphics 630
Manufacturer: HP
Product Name: HP Pavilion All-in-One 24-xa0xxx

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

[Discover] [Bug 480784] New: Discover crashes when resizing to small window or several times rapidly

2024-02-03 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=480784

Bug ID: 480784
   Summary: Discover crashes when resizing to small window or
several times rapidly
Classification: Applications
   Product: Discover
   Version: master
  Platform: Neon
OS: Linux
Status: REPORTED
  Severity: crash
  Priority: NOR
 Component: discover
  Assignee: plasma-b...@kde.org
  Reporter: indigosk...@gmail.com
CC: aleix...@kde.org
  Target Milestone: ---

SUMMARY
***
Resizing Discover in Wayland makes it crash
***


STEPS TO REPRODUCE
1. Resize discover to a small size or resize it several times continuously.

OBSERVED RESULT
Crash

EXPECTED RESULT
Normal resize

Operating System: KDE neon Unstable Edition
KDE Plasma Version: 6.0.80
KDE Frameworks Version: 6.0.0
Qt Version: 6.6.1
Kernel Version: 6.5.0-15-generic (64-bit)
Graphics Platform: Wayland
Processors: 6 × Intel® Core™ i5-9400T CPU @ 1.80GHz
Memory: 15.4 GiB of RAM
Graphics Processor: Mesa Intel® UHD Graphics 630
Manufacturer: HP
Product Name: HP Pavilion All-in-One 24-xa0xxx

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

[plasmashell] [Bug 480782] Neon Colour appears around the floating panel bar when another window merges fast

2024-02-05 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=480782

--- Comment #2 from Axel  ---
It seems to have gotten fix, in all cases, with the last update (the one that
came with the 6.0 version change).  Status modified to REPORTED. Thanks(In
reply to Doug from comment #1)
> I cannot reproduce.
> 
> Operating System: KDE neon Testing Edition
> KDE Plasma Version: 6.0.0
> KDE Frameworks Version: 6.0.0
> Qt Version: 6.6.1
> Kernel Version: 6.5.0-15-generic (64-bit)
> Graphics Platform: Wayland
> Processors: 12 × Intel® Core™ i7-9750H CPU @ 2.60GHz
> Memory: 15.4 GiB of RAM
> Graphics Processor: AMD Radeon Pro WX 3200 Series
> Manufacturer: Dell Inc.
> Product Name: Precision 7540

It seems to have gotten fix, in all cases, with the last update (the one that
came with the 6.0 version change).  Status modified to FIXED. Thanks

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

[plasmashell] [Bug 480782] Neon Colour appears around the floating panel bar when another window merges fast

2024-02-05 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=480782

Axel  changed:

   What|Removed |Added

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

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

[Discover] [Bug 480783] Discover intense stutter when resizing window

2024-02-05 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=480783

--- Comment #2 from Axel  ---
(In reply to Doug from comment #1)
> I can reproduce.  Also, if I continue to do if for a couple seconds,
> Discover will freeze up and crash.  Related, or should I file another bug
> report?
> 
> Operating System: KDE neon Testing Edition
> KDE Plasma Version: 6.0.0
> KDE Frameworks Version: 6.0.0
> Qt Version: 6.6.1
> Kernel Version: 6.5.0-15-generic (64-bit)
> Graphics Platform: Wayland
> Processors: 12 × Intel® Core™ i7-9750H CPU @ 2.60GHz
> Memory: 15.4 GiB of RAM
> Graphics Processor: AMD Radeon Pro WX 3200 Series
> Manufacturer: Dell Inc.
> Product Name: Precision 7540

I've found the Welcome Center and System Monitor have the same bug(crazy
stuttering). I dont see it as VHI bug but it certainly gives a bad first
impression specially for the Welcome Center and Discover. 
Given how the bug seems to happen for similar KDE core projects and not apps
like Okular, the problem might come its Kirigami/QML/QT base. Other apps built
in a similar way may have the same stuttering.

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

[plasmashell] [Bug 479986] Plasma crashed when clicking on the system tray

2024-02-05 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=479986

Axel  changed:

   What|Removed |Added

 CC||indigosk...@gmail.com

--- Comment #6 from Axel  ---
(In reply to Pawel from comment #5)
> Created attachment 165432 [details]
> another crash - full gdb dump
> 
> happened again - I think the backtrace is the same

you can verify it by simply using a text diff.

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

[plasmashell] [Bug 479940] Don't work in x11 session

2024-02-05 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=479940

Axel  changed:

   What|Removed |Added

 CC||indigosk...@gmail.com

--- Comment #1 from Axel  ---
is it still happening? if not change the status.

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

[systemsettings] [Bug 480871] Weird component overlapping when making the window too narrow

2024-02-05 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=480871

Axel  changed:

   What|Removed |Added

 CC||indigosk...@gmail.com

--- Comment #2 from Axel  ---
Cannot reproduce either. The window seems to have a minimum resize range than
makes it impossible to reach that narrow level. Is it still happening on your
side? Otherwise change the bug status. 

Operating System: KDE neon Unstable Edition
KDE Plasma Version: 6.0.80
KDE Frameworks Version: 6.0.0
Qt Version: 6.6.1
Kernel Version: 6.5.0-15-generic (64-bit)
Graphics Platform: Wayland
Processors: 6 × Intel® Core™ i5-9400T CPU @ 1.80GHz
Memory: 15.4 GiB of RAM
Graphics Processor: Mesa Intel® UHD Graphics 630
Manufacturer: HP
Product Name: HP Pavilion All-in-One 24-xa0xxx

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

[plasmashell] [Bug 480859] Visual glitch when panel resizes

2024-02-05 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=480859

Axel  changed:

   What|Removed |Added

 CC||indigosk...@gmail.com

--- Comment #2 from Axel  ---
(In reply to Doug from comment #1)
> Can not reproduce on Plasma 6.0, but there were some glitches that I noticed
> in the panel animation in previous versions- including 5.93.0.  But it's
> smooth as butter for me in 6.
> 
> Operating System: KDE neon Testing Edition
> KDE Plasma Version: 6.0.0
> KDE Frameworks Version: 6.0.0
> Qt Version: 6.6.1
> Kernel Version: 6.5.0-15-generic (64-bit)
> Graphics Platform: Wayland
> Processors: 12 × Intel® Core™ i7-9750H CPU @ 2.60GHz
> Memory: 15.4 GiB of RAM
> Graphics Processor: AMD Radeon Pro WX 3200 Series
> Manufacturer: Dell Inc.
> Product Name: Precision 7540

Seems to have the same bug as https://bugs.kde.org/show_bug.cgi?id=480782. It
appears to have gotten fixed with the latest update. Changed this current
status to fixed.

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

[plasmashell] [Bug 480859] Visual glitch when panel resizes

2024-02-05 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=480859

Axel  changed:

   What|Removed |Added

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

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

[plasma-systemmonitor] [Bug 478119] The system monitor sometimes does not adapt to the window size after de-maximizing

2024-02-05 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=478119

Axel  changed:

   What|Removed |Added

 CC||indigosk...@gmail.com

--- Comment #4 from Axel  ---
(In reply to Zhora Zmeikin from comment #2)
> Hmm, that's weird. Are you running X11 or Wayland? And what monitor
> resolution do you have? I tested this on a full HD monitor.

Cant reproduce. is still happening? Otherwise change the status. 

Operating System: KDE neon Unstable Edition
KDE Plasma Version: 6.0.80
KDE Frameworks Version: 6.0.0
Qt Version: 6.6.1
Kernel Version: 6.5.0-15-generic (64-bit)
Graphics Platform: Wayland
Processors: 6 × Intel® Core™ i5-9400T CPU @ 1.80GHz
Memory: 15.4 GiB of RAM
Graphics Processor: Mesa Intel® UHD Graphics 630
Manufacturer: HP
Product Name: HP Pavilion All-in-One 24-xa0xxx

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

[plasmashell] [Bug 475320] Transition is not smooth when switching tabs

2024-02-05 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=475320

Axel  changed:

   What|Removed |Added

 Status|REPORTED|RESOLVED
 CC||indigosk...@gmail.com
 Resolution|--- |FIXED

--- Comment #2 from Axel  ---
Cant reproduce. Marked as Fixed given the lack of system info and number of
updates since.

Operating System: KDE neon Unstable Edition
KDE Plasma Version: 6.0.80
KDE Frameworks Version: 6.0.0
Qt Version: 6.6.1
Kernel Version: 6.5.0-15-generic (64-bit)
Graphics Platform: Wayland
Processors: 6 × Intel® Core™ i5-9400T CPU @ 1.80GHz
Memory: 15.4 GiB of RAM
Graphics Processor: Mesa Intel® UHD Graphics 630
Manufacturer: HP
Product Name: HP Pavilion All-in-One 24-xa0xxx

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

[kwin] [Bug 478061] Right click menu of the title bar doesn't stay open

2024-02-05 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=478061

Axel  changed:

   What|Removed |Added

 CC||indigosk...@gmail.com

--- Comment #2 from Axel  ---
Can reproduce, still happening.

Operating System: KDE neon Unstable Edition
KDE Plasma Version: 6.0.80
KDE Frameworks Version: 6.0.0
Qt Version: 6.6.1
Kernel Version: 6.5.0-15-generic (64-bit)
Graphics Platform: Wayland
Processors: 6 × Intel® Core™ i5-9400T CPU @ 1.80GHz
Memory: 15.4 GiB of RAM
Graphics Processor: Mesa Intel® UHD Graphics 630
Manufacturer: HP
Product Name: HP Pavilion All-in-One 24-xa0xxx

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

[Discover] [Bug 480783] Discover intense stutter when resizing window

2024-02-05 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=480783

--- Comment #4 from Axel  ---
(In reply to duha.bugs from comment #3)
> (In reply to Doug from comment #1)
> > I can reproduce.  Also, if I continue to do if for a couple seconds,
> > Discover will freeze up and crash.  Related, or should I file another bug
> > report?
> > 
> 
> Does it crash if you make it really small and then try to expand? If so it
> is probably https://bugs.kde.org/show_bug.cgi?id=478638
> 
> 
> Regarding stuttering: It doesn't stutter for me (AMD RX 580), just looks a
> little bit wonky. Do you all have intel IGPU's or old GPU's?

yes. It can be resized as small as its limit allows it and it remains open. It
crashes right after expanding it. Regular gpu.

lspci: 

00:00.0 Host bridge: Intel Corporation 8th Gen Core Processor Host Bridge/DRAM
Registers (rev 07)
00:02.0 VGA compatible controller: Intel Corporation CoffeeLake-S GT2 [UHD
Graphics 630]
00:08.0 System peripheral: Intel Corporation Xeon E3-1200 v5/v6 / E3-1500 v5 /
6th/7th/8th Gen Core Processor Gaussian Mixture Model
00:12.0 Signal processing controller: Intel Corporation Cannon Lake PCH Thermal
Controller (rev 10)
00:14.0 USB controller: Intel Corporation Cannon Lake PCH USB 3.1 xHCI Host
Controller (rev 10)
00:14.2 RAM memory: Intel Corporation Cannon Lake PCH Shared SRAM (rev 10)
00:14.5 SD Host controller: Intel Corporation Device a375 (rev 10)
00:16.0 Communication controller: Intel Corporation Cannon Lake PCH HECI
Controller (rev 10)
00:17.0 SATA controller: Intel Corporation Cannon Lake PCH SATA AHCI Controller
(rev 10)
00:1c.0 PCI bridge: Intel Corporation Cannon Lake PCH PCI Express Root Port #5
(rev f0)
00:1c.5 PCI bridge: Intel Corporation Cannon Lake PCH PCI Express Root Port #6
(rev f0)
00:1d.0 PCI bridge: Intel Corporation Cannon Lake PCH PCI Express Root Port #9
(rev f0)
00:1f.0 ISA bridge: Intel Corporation H370 Chipset LPC/eSPI Controller (rev 10)
00:1f.3 Audio device: Intel Corporation Cannon Lake PCH cAVS (rev 10)
00:1f.4 SMBus: Intel Corporation Cannon Lake PCH SMBus Controller (rev 10)
00:1f.5 Serial bus controller: Intel Corporation Cannon Lake PCH SPI Controller
(rev 10)
01:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411
PCI Express Gigabit Ethernet Controller (rev 15)
02:00.0 Network controller: Realtek Semiconductor Co., Ltd. RTL8822BE
802.11a/b/g/n/ac WiFi adapter
03:00.0 Non-Volatile memory controller: SK hynix BC511

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

[systemsettings] [Bug 480871] Weird component overlapping when making the window too narrow

2024-02-05 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=480871

--- Comment #8 from Axel  ---
(In reply to Tammes Burghard from comment #7)
> And when made too narrow, Discovers UI becomes unresponsive, see
> https://kuchenmampfer.de/kde_bug_480871.webm

Have you done any modifications or added any specific plugins/themes? Could be
QT version related since it doesnt happen on previous versions.

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

[Discover] [Bug 480783] Discover intense stutter when resizing window

2024-02-06 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=480783

--- Comment #6 from Axel  ---
(In reply to Nate Graham from comment #5)
> Indeed, unfortunately there's nothing we can do about it in KDE; it's a
> bug/limitation of QtQuick itself, in Qt.

Has there been an upstream fix or nothing yet

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

[plasmashell] [Bug 480548] White or colored lines flickering around panel as it floats and de-floats, especially visible with Breeze Dark

2024-02-06 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=480548

Axel  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 CC||indigosk...@gmail.com
 Status|CONFIRMED   |RESOLVED

--- Comment #8 from Axel  ---
It has been fixed with the Plasma 6 name change update. Status changed to FIXED

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

[kwin] [Bug 481093] When switching the theme, it happens piece by piece and not smoothly

2024-02-08 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=481093

Axel  changed:

   What|Removed |Added

 CC||indigosk...@gmail.com

--- Comment #1 from Axel  ---
This is something Ive seen for a longtime (since 2021). Probably longer. The
effect may be more difficult to fix than what it looks. Curious to hear what
more knowledgeable members have to share about this.

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

[Haruna] [Bug 441256] Feature request: switch to force single instance

2022-09-16 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=441256

Axel  changed:

   What|Removed |Added

 CC||edgar.serrano.9...@gmail.co
   ||m

--- Comment #1 from Axel  ---
So this place is a bit confusing, hope this is the right place to comment. I
would like to politely add my support behind this request as well, to expand a
bit: have an option to reuse the current instance and replace the playlist
instead of opening a new window when opening a file from Dolphin, this is the
default behaviour on most video players.

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

[kwin] [Bug 459213] New: Bring to front system settings pages when selecting them from the app menu when system settings is already running minimized

2022-09-16 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=459213

Bug ID: 459213
   Summary: Bring to front system settings pages when selecting
them from the app menu when system settings is already
running minimized
Classification: Unclassified
   Product: kwin
   Version: 5.25.5
  Platform: Archlinux
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: kwin-bugs-n...@kde.org
  Reporter: edgar.serrano.9...@gmail.com
  Target Milestone: ---

STEPS TO REPRODUCE
1. Open system settings
2. Minimize it
3. Open a system settings section like 'Colors' from the app menu

OBSERVED RESULT
System settings silently switches to that page but the window stays minimized

EXPECTED RESULT
System settings switches to that page and raises its window

SOFTWARE/OS VERSIONS
Linux/KDE Plasma: Arch
(available in About System)
KDE Plasma Version: 5.25
KDE Frameworks Version: 5.98
Qt Version: 5.15

ADDITIONAL INFORMATION
Tried in Fedora 37, same result

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

[kdeconnect] [Bug 470085] New: App does not reconnect on wifi connect

2023-05-21 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=470085

Bug ID: 470085
   Summary: App does not reconnect on wifi connect
Classification: Applications
   Product: kdeconnect
   Version: unspecified
  Platform: Android
OS: Android 12.x
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: android-application
  Assignee: albertv...@gmail.com
  Reporter: thas5egh2chae...@pm.me
CC: andrew.g.r.hol...@gmail.com
  Target Milestone: ---

SUMMARY
The android app does not reconnect with the computer on its own after
reconnecting to the wifi network.
It doesn't matter if the app is open, the notification and the app screen both
show no connections.
Closing the app and opening it again does reconnect.

STEPS TO REPRODUCE
1. Turn off phone wifi
2. Turn on phone wifi

OBSERVED RESULT
Not connected to any device

EXPECTED RESULT
Connected to computer

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

ADDITIONAL INFORMATION
I have reinstalled the app.

logcat shows this suspicious message:
05-21 13:28:09.840   967  1032 W BroadcastQueue: Background execution not
allowed: receiving Intent { act=android.net.wifi.WIFI_STATE_CHANGED
flg=0x410 (has extras) } to
org.kde.kdeconnect_tp/org.kde.kdeconnect.KdeConnectBroadcastReceiver

This behaviour is relatively recent, it used to work fine. Looking through
other bug reports led me to this merge request
https://invent.kde.org/network/kdeconnect-android/-/commit/fd34e56675dd7e982e22abb051400804ab5ede67
which could fit into the time frame.
I downloaded the latest version before this, 1.20.2, from APKMirror and could
not reproduce, that version reconnects fine.

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

[plasmashell] [Bug 469504] Closing notifications regarding a widget being removed can sometimes crash plasma

2023-05-30 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=469504

Axel  changed:

   What|Removed |Added

 Status|NEEDSINFO   |RESOLVED
 Resolution|BACKTRACE   |FIXED

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

[Spectacle] [Bug 469502] Clicking on save should provide feedback about the screenshot being saved

2023-05-31 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=469502

Axel  changed:

   What|Removed |Added

 Resolution|WAITINGFORINFO  |NOT A BUG
 Status|NEEDSINFO   |RESOLVED

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

[angelfish] [Bug 471221] New: No way to close downloads panel in desktop mode

2023-06-19 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=471221

Bug ID: 471221
   Summary: No way to close downloads panel in desktop mode
Classification: Applications
   Product: angelfish
   Version: 23.04.2
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: j...@kaidan.im
  Reporter: edgar.serrano.9...@gmail.com
  Target Milestone: ---

Created attachment 159769
  --> https://bugs.kde.org/attachment.cgi?id=159769&action=edit
Downloads

STEPS TO REPRODUCE
1. Open Downloads from the menu 
2. Try to close it

OBSERVED RESULT
No way to close it

EXPECTED RESULT
A close button like Bookmark panel has

SOFTWARE/OS VERSIONS
Arch

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

[angelfish] [Bug 471221] No way to close downloads panel in desktop mode

2023-06-19 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=471221

--- Comment #1 from Axel  ---
Created attachment 159770
  --> https://bugs.kde.org/attachment.cgi?id=159770&action=edit
Bookmarks

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

[angelfish] [Bug 471221] No way to close downloads panel in desktop mode

2023-06-19 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=471221

--- Comment #2 from Axel  ---
Created attachment 159771
  --> https://bugs.kde.org/attachment.cgi?id=159771&action=edit
Changing tabs

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

[angelfish] [Bug 471221] No way to close downloads panel in desktop mode

2023-06-19 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=471221

--- Comment #3 from Axel  ---
Also switching to anoyther tab causes the bug shown on the attachements

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

[Haruna] [Bug 471245] New: Sometimes when opening from a file Haruna doesn't inhibit power saving

2023-06-19 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=471245

Bug ID: 471245
   Summary: Sometimes when opening from a file Haruna doesn't
inhibit power saving
Classification: Applications
   Product: Haruna
   Version: unspecified
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: generic
  Assignee: georgefb...@gmail.com
  Reporter: edgar.serrano.9...@gmail.com
  Target Milestone: ---

SUMMARY
After a while of playing the screen dims because Plasma doesn't detect any
process inhibiting sleep. You have to either reopen Haruna or manually block
sleep and screen locking from the power widget


STEPS TO REPRODUCE
1. Open a file
2. Wait

OBSERVED RESULT
The screen dims

EXPECTED RESULT
The screen doesn't dim

SOFTWARE/OS VERSIONS
Arch

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

[Spectacle] [Bug 469502] Clicking on save should provide feedback about the screenshot being saved

2023-06-19 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=469502

Axel  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Resolution|NOT A BUG   |---
 Status|RESOLVED|REOPENED

--- Comment #3 from Axel  ---
1 Open spectacle
2 Hit save, you will get a banner and the title will change
3 Take a new screenshot using the buttons on the right
4 Hit save, nothing will happen

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

[Spectacle] [Bug 469502] Clicking on save should provide feedback about the screenshot being saved

2023-06-20 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=469502

--- Comment #5 from Axel  ---
Created attachment 159788
  --> https://bugs.kde.org/attachment.cgi?id=159788&action=edit
Here

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

[Spectacle] [Bug 469502] Clicking on save should provide feedback about the screenshot being saved

2023-06-23 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=469502

Axel  changed:

   What|Removed |Added

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

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

[konsole] [Bug 432998] Color chooser for each single terminal tab

2021-02-16 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=432998

Axel  changed:

   What|Removed |Added

 CC||navarroa...@gmail.com

--- Comment #2 from Axel  ---
Oh! that's really cool. Could we please have that feature in Yakuake? 😁

(I really think that Konsole should be dockable.)

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

[krita] [Bug 451657] New: Panning tool

2022-03-18 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=451657

Bug ID: 451657
   Summary: Panning tool
   Product: krita
   Version: 5.0.2
  Platform: Microsoft Windows
OS: Microsoft Windows
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: Tools
  Assignee: krita-bugs-n...@kde.org
  Reporter: axelisepic...@gmail.com
  Target Milestone: ---

SUMMARY
***
I'm **still** having trouble using the pan tool, it keeps removing my progress
when using the spacebar


STEPS TO REPRODUCE
1. reinstall the app
2. reopen

OBSERVED RESULT
Still the same, the artworks keep being removed

EXPECTED RESULT
Allows me to pan around without removing the artwork in progress

SOFTWARE/OS VERSIONS
Windows: 10

ADDITIONAL INFORMATION

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

[krita] [Bug 451657] Panning tool

2022-03-18 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=451657

--- Comment #2 from Axel  ---
ah yes, it worked again, tysm sir

Vào Th 6, 18 thg 3, 2022 vào lúc 22:42 David REVOY <
bugzilla_nore...@kde.org> đã viết:

> https://bugs.kde.org/show_bug.cgi?id=451657
>
> David REVOY  changed:
>
>What|Removed |Added
>
> 
>  Resolution|FIXED   |WAITINGFORINFO
>
> --
> You are receiving this mail because:
> You reported the bug.

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

[plasmashell] [Bug 485247] System tray starts with an empty space to the left of the show hidden icons button

2024-04-09 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=485247

--- Comment #4 from Axel  ---
It's somewhat tricky. If I hide the brightness entry it never happens, but
playing around with the entry switching back to breeze icon theme sometimes but
very rarely n then switching back to papirus it stops happening. But deleting
the panel n starting fresh can make it happen with breeze as well as long as
the brightness entry is present

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

[kwin] [Bug 485348] New: Plasma shows black screen after Switching user and changing session from X11 to Wayland

2024-04-10 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=485348

Bug ID: 485348
   Summary: Plasma shows black screen after Switching user and
changing session from X11 to Wayland
Classification: Plasma
   Product: kwin
   Version: master
  Platform: openSUSE
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: core
  Assignee: kwin-bugs-n...@kde.org
  Reporter: indigosk...@gmail.com
  Target Milestone: ---

SUMMARY


STEPS TO REPRODUCE
1. Be on X11. Open panel and choose Switch User.
2. Switch Session from X11 to Wayland from the bottom option.
3. Try to log in. You only get a black screen. The mouse cursor is loaded
though and moves correctly.

OBSERVED RESULT
you only get a black screen. The mouse cursor is loaded though and moves
correctly. I have to force restart my PC with the power button as Plasma
remains on a black screen.

EXPECTED RESULT
Be able to log back to Plasma.

SOFTWARE/OS VERSIONS
Operating System: openSUSE Tumbleweed 20240409
KDE Plasma Version: 6.0.3
KDE Frameworks Version: 6.0.0
Qt Version: 6.7.0
Kernel Version: 6.8.2-1-default (64-bit)
Graphics Platform: X11
Processors: 6 × Intel® Core™ i5-9400T CPU @ 1.80GHz
Memory: 15.4 GiB of RAM
Graphics Processor: Mesa Intel® UHD Graphics 630
Manufacturer: HP
Product Name: HP Pavilion All-in-One 24-xa0xxx

ADDITIONAL INFORMATION

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

[kwin] [Bug 485561] New: Thin lines below the panel with fractional scaling

2024-04-14 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=485561

Bug ID: 485561
   Summary: Thin lines below the panel with fractional scaling
Classification: Plasma
   Product: kwin
   Version: 6.0.3
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: compositing
  Assignee: kwin-bugs-n...@kde.org
  Reporter: edgar.serrano.9...@gmail.com
  Target Milestone: ---

SUMMARY
Using 140 or 145 as fractional scaling value (Wich are the most appropriate
values for my 1080 14" screen) cause flickering thin lines below the panel,
most noticeably on the task manager. With 145 the lines might appear anywhere
on the screen. Lower or higher values do not produce these artifacts 

STEPS TO REPRODUCE
1. Set scaling to the above values
2. Use the desktop for a bit, open apps or switch between em

OBSERVED RESULT
The lines

EXPECTED RESULT
No lines

SOFTWARE/OS VERSIONS
Arch Linux

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

[kwin] [Bug 485561] Thin lines below the panel with fractional scaling

2024-04-14 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=485561

--- Comment #1 from Axel  ---
Created attachment 168520
  --> https://bugs.kde.org/attachment.cgi?id=168520&action=edit
See below angelfish and dolphin

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

[plasmashell] [Bug 485592] New: Allow setting a custom icon size for kickoff's panel icon

2024-04-15 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=485592

Bug ID: 485592
   Summary: Allow setting a custom icon size for kickoff's panel
icon
Classification: Plasma
   Product: plasmashell
   Version: 6.0.3
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: Application Launcher (Kickoff)
  Assignee: plasma-b...@kde.org
  Reporter: edgar.serrano.9...@gmail.com
CC: mikel5...@gmail.com, noaha...@gmail.com
  Target Milestone: 1.0

I would like the ability to set a custom size for the icon so that it can be
bigger from the rest of the panel icons, like the task manager icons for
example. If not custom maybe something like small,normal,big

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

[kwin] [Bug 482861] Overview FPS drop animation

2024-07-02 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=482861

Axel  changed:

   What|Removed |Added

 CC||indigosk...@gmail.com

--- Comment #4 from Axel  ---
(In reply to Zamundaaa from comment #3)
> Git commit d59451adcf8f7a4d90659a60bfbe73230091b0e3 by Xaver Hugl.
> Committed on 26/03/2024 at 16:06.
> Pushed by zamundaaa into branch 'master'.
> 
> effects/quickeffect: render qtquick scenes in the normal render pass
> 
> If they're rendered in prePaintScreen, the time needed to render them is not
> accounted for in compositing scheduling, which may make KWin miss vblank
> Related: bug 452119, bug 482034
> 
> M  +5-0src/effect/offscreenquickview.cpp
> M  +9-10   src/effect/quickeffect.cpp
> 
> https://invent.kde.org/plasma/kwin/-/commit/
> d59451adcf8f7a4d90659a60bfbe73230091b0e3

Shouldnt this bug be closed since the merge request was accepted and the other
2 related bugs are RESOLVED?

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

[kwin] [Bug 469443] New: Broken graphics after waking up from sleep on Wayland session

2023-05-07 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=469443

Bug ID: 469443
   Summary: Broken graphics after waking up from sleep on Wayland
session
Classification: Plasma
   Product: kwin
   Version: 5.27.4
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: critical
  Priority: NOR
 Component: compositing
  Assignee: kwin-bugs-n...@kde.org
  Reporter: edgar.serrano.9...@gmail.com
  Target Milestone: ---

Created attachment 158749
  --> https://bugs.kde.org/attachment.cgi?id=158749&action=edit
Example

STEPS TO REPRODUCE
1. Put the system to sleep
2. Resume it

OBSERVED RESULT
The graphics are all garbled

Fedora 38
AMD gpu

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

[audiotube] [Bug 469501] New: Channels show up as empty search results

2023-05-08 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=469501

Bug ID: 469501
   Summary: Channels show up as empty search results
Classification: Applications
   Product: audiotube
   Version: 23.04.0
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: j...@kaidan.im
  Reporter: edgar.serrano.9...@gmail.com
  Target Milestone: ---

Created attachment 158777
  --> https://bugs.kde.org/attachment.cgi?id=158777&action=edit
Example

STEPS TO REPRODUCE
1. Search for something


OBSERVED RESULT
Channels show up as empty search results

EXPECTED RESULT
Channels either show up correctly or dont show at all

SOFTWARE/OS VERSIONS
Up to date Archlinux

ADDITIONAL INFORMATION

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

[Spectacle] [Bug 469502] New: Clicking on save should provide feedback about the screenshot being saved

2023-05-08 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=469502

Bug ID: 469502
   Summary: Clicking on save should provide feedback about the
screenshot being saved
Classification: Applications
   Product: Spectacle
   Version: 23.04.0
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: General
  Assignee: noaha...@gmail.com
  Reporter: edgar.serrano.9...@gmail.com
CC: k...@david-redondo.de
  Target Milestone: ---

SUMMARY
No passive notification or any other visual feedback is shown about the
screenshot being saved to Pictures, additionally the window title still says
Unsaved

STEPS TO REPRODUCE
1. Open Spectacle
2. Take a screenshot
3. Click Save on the toolbar

OBSERVED RESULT
The screenshot is saved but no visual feedback is given about it

EXPECTED RESULT
A Toast confirming the screenshot was saved successfully

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

[plasmashell] [Bug 469504] New: Closing notifications regarding a widget being removed can sometimes crash plasma

2023-05-08 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=469504

Bug ID: 469504
   Summary: Closing notifications regarding a widget being removed
can sometimes crash plasma
Classification: Plasma
   Product: plasmashell
   Version: 5.27.4
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: Notifications
  Assignee: plasma-b...@kde.org
  Reporter: edgar.serrano.9...@gmail.com
CC: k...@privat.broulik.de
  Target Milestone: 1.0

SUMMARY
I've only noticed it with this kind of notifications and its easier when there
are various notifications of that type 


STEPS TO REPRODUCE
1. Remove some widgets from the panel
2. Try closing their respective notifications

OBSERVED RESULT
Plasma crashes

EXPECTED RESULT
The notification is closed normally

ADDITIONAL INFORMATION
Up to date arch install

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

[kwin] [Bug 469443] Broken graphics after waking up from sleep on Wayland session

2023-05-14 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=469443

--- Comment #2 from Axel  ---
Yeah i also get this when coming back from a tty
 It's a Radeon HD 6310

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

[kwin] [Bug 469443] Broken graphics after waking up from sleep on Wayland session

2023-05-14 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=469443

Axel  changed:

   What|Removed |Added

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

--- Comment #3 from Axel  ---


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

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

[kwin] [Bug 469280] Screen corruption after switching back from TTY and after coming back from sleep.

2023-05-14 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=469280

Axel  changed:

   What|Removed |Added

 CC||edgar.serrano.9...@gmail.co
   ||m

--- Comment #1 from Axel  ---
*** Bug 469443 has been marked as a duplicate of this bug. ***

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

[Discover] [Bug 485113] New: Visual Bug when updating from Discover

2024-04-05 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=485113

Bug ID: 485113
   Summary: Visual Bug when updating from Discover
Classification: Applications
   Product: Discover
   Version: 6.0.3
  Platform: openSUSE
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: discover
  Assignee: plasma-b...@kde.org
  Reporter: indigosk...@gmail.com
CC: aleix...@kde.org
  Target Milestone: ---

***
When updating there is a visual bug that makes part of the updating
libraries/programs empty. 
A simple (yet  real) fix is to click on another tab (about or setting and back
to `Update`. 
***

SUMMARY


STEPS TO REPRODUCE
1. Update, see the list of libraries. Some disappear.

OBSERVED RESULT
Libraries/programs updating disappear.  https://imgur.com/a/LXpLmJI

EXPECTED RESULT
Work normal. https://imgur.com/a/fL0pkje

SOFTWARE/OS VERSIONS
Operating System: openSUSE Tumbleweed 20240404
KDE Plasma Version: 6.0.3
KDE Frameworks Version: 6.0.0
Qt Version: 6.6.3
Kernel Version: 6.6.7-1-default (64-bit)
Graphics Platform: Wayland
Processors: 6 × Intel® Core™ i5-9400T CPU @ 1.80GHz
Memory: 15.4 GiB of RAM
Graphics Processor: Mesa Intel® UHD Graphics 630
Manufacturer: HP
Product Name: HP Pavilion All-in-One 24-xa0xxx

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

[plasmashell] [Bug 485247] New: System tray starts with an empty space to the left of the show hidden icons button

2024-04-08 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=485247

Bug ID: 485247
   Summary: System tray starts with an empty space to the left of
the show hidden icons button
Classification: Plasma
   Product: plasmashell
   Version: 6.0.3
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: System Tray
  Assignee: plasma-b...@kde.org
  Reporter: edgar.serrano.9...@gmail.com
CC: mate...@gmail.com
  Target Milestone: 1.0

SUMMARY
Hiding system tray entries or any event that causes the tray to update gets rid
of the problem. But if u kill plasmashell n start it again there it is

STEPS TO REPRODUCE
1. Customize the panel
2. Start plasma

Arch Linux

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

[plasmashell] [Bug 485247] System tray starts with an empty space to the left of the show hidden icons button

2024-04-09 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=485247

--- Comment #2 from Axel  ---
Created attachment 168309
  --> https://bugs.kde.org/attachment.cgi?id=168309&action=edit
The bug

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

[plasmashell] [Bug 485247] System tray starts with an empty space to the left of the show hidden icons button

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

--- Comment #8 from Axel  ---
I'm on Fedora KDE now, I can't reproduce this even if I try. I can't reproduce
it either on neon unstable. I don't have arch available to test anymore, maybe
I should close this as an Arch specific issue?

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

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

2024-05-29 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=482987

--- Comment #48 from Axel  ---
(In reply to Wassim Akkari from comment #40)
> Created attachment 169908 [details]
> The fix is not complete yet
> 
> Hello I'm now under 6.0.5, this issue with lower edge and right edge are
> fixed but there is a still small one that you guys didn't notice with
> (close, maximize, minimize) buttons.
> I have attached a small video showing the issue.

In my case is till have a thin line showing on Dolphin's header area

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

[krunner] [Bug 462353] Exact search matches should be ranked higher

2022-11-30 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=462353

--- Comment #2 from Axel  ---
So it seems to be because krunner puts applications results first, so the first
5 results were from apps, and the sixth wich was Application Style was actually
the first on its category

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

[plasmashell] [Bug 462354] Allow resizing widgets to a smaller size

2022-12-13 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=462354

Axel  changed:

   What|Removed |Added

 Status|NEEDSINFO   |RESOLVED

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

[plasmashell] [Bug 462354] Allow resizing widgets to a smaller size

2022-12-13 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=462354

Axel  changed:

   What|Removed |Added

 Resolution|WAITINGFORINFO  |NOT A BUG

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

[konsole] [Bug 436357] Wish for custom context menu options

2021-04-29 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=436357

Axel  changed:

   What|Removed |Added

 CC||navarroa...@gmail.com

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

[kate] [Bug 430754] [Wayland]Small error message on launch related to requestActivate()

2021-05-13 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=430754

Axel  changed:

   What|Removed |Added

 CC||wildsn...@mail.ru

--- Comment #1 from Axel  ---
confirm. still presents in 21.04.1

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

[kate] [Bug 430754] [Wayland]Small error message on launch related to requestActivate()

2021-05-13 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=430754

Axel  changed:

   What|Removed |Added

Version|20.08.3 |21.04.0

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

[kate] [Bug 430754] [Wayland]Small error message on launch related to requestActivate()

2021-05-13 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=430754

Axel  changed:

   What|Removed |Added

   Platform|Fedora RPMs |Gentoo Packages

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

[Haruna] [Bug 441256] Feature request: switch to force single instance

2022-09-20 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=441256

--- Comment #3 from Axel  ---
(In reply to Luigi Baldoni from comment #2)
> (In reply to Axel from comment #1)
> > a bit: have an option to reuse the current instance and replace the playlist
> > instead of opening a new window when opening a file from Dolphin, this is
> > the default behaviour on most video players.
> 
> I do something like that via qdbus, perhaps you could create a script to
> that effect.

Could you provide the details?

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

[Haruna] [Bug 441256] Feature request: switch to force single instance

2022-09-21 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=441256

--- Comment #5 from Axel  ---
Thank you

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

[gwenview] [Bug 433529] Add a setting to use dark color scheme or to select color scheme

2022-09-25 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=433529

Axel  changed:

   What|Removed |Added

 CC||edgar.serrano.9...@gmail.co
   ||m

--- Comment #3 from Axel  ---
Most video players and image viewers use dark mode by default since the
important thing here is the actual content this kind of apps should not stand
out themselves, I believe this is a very needed usability enhancement

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

[konsole] [Bug 459676] New: Make the default window size smaller

2022-09-25 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=459676

Bug ID: 459676
   Summary: Make the default window size smaller
Classification: Applications
   Product: konsole
   Version: 22.08.1
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: konsole-de...@kde.org
  Reporter: edgar.serrano.9...@gmail.com
  Target Milestone: ---

The initial Konsole window is kinda scary, it's a bit bigger than other
terminals and takes a while to process all it's ui elements. Getting a
khamburger menu along with a smaller window size would help making it more
simple while preserving all it's functionally

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

[kontrast] [Bug 459677] New: Move contrast definition to a help section

2022-09-25 Thread Axel
https://bugs.kde.org/show_bug.cgi?id=459677

Bug ID: 459677
   Summary: Move contrast definition to a help section
Classification: Applications
   Product: kontrast
   Version: 22.08.1
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: c...@carlschwan.eu
  Reporter: edgar.serrano.9...@gmail.com
  Target Milestone: ---

Having a text with the description of what contrast is always visible is kind
of unnecessary and pollutes the ui. This is a simple app so it's window should
be considerably smaller

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

  1   2   3   4   5   6   7   8   9   >