[colord-kde] [Bug 433638] Adding Color profile to Device generates extra wide columns and Fills screen

2021-02-25 Thread Stever K
https://bugs.kde.org/show_bug.cgi?id=433638

Stever K  changed:

   What|Removed |Added

Summary|Adding Color profile to |Adding Color profile to
   |Device generates extra wide |Device generates extra wide
   |columns and locks screen|columns and Fills screen

--- Comment #1 from Stever K  ---
After re-reading ...

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

[colord-kde] [Bug 433638] Adding Color profile to Device generates extra wide columns and locks screen

2021-02-25 Thread Stever K
https://bugs.kde.org/show_bug.cgi?id=433638

Stever K  changed:

   What|Removed |Added

 CC||stvr_8...@comcast.net

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

[colord-kde] [Bug 433638] New: Adding Color profile to Device generates extra wide columns and locks screen

2021-02-25 Thread Stever K
https://bugs.kde.org/show_bug.cgi?id=433638

Bug ID: 433638
   Summary: Adding Color profile to Device generates extra wide
columns and locks screen
   Product: colord-kde
   Version: unspecified
  Platform: openSUSE RPMs
OS: Linux
Status: REPORTED
  Severity: major
  Priority: NOR
 Component: Systems Settings Module (KCM)
  Assignee: dantt...@gmail.com
  Reporter: stvr_8...@comcast.net
  Target Milestone: ---

SUMMARY
Color Corrections - system settings - Devices selected, device Monitor, attempt
to "Add Profile" from "Available Profiles" generates extra wide columns and
locks screen with first few rows. This event is rather new, I added a new
profile about three weeks ago. Krita was on system but removed prior to this.

STEPS TO REPRODUCE
1. Select Color Corrections, Select Devices, Select Monitor
2. Select Add Profile, choose Available Profiles
3. pop-up fills full screen.

OBSERVED RESULT
Three columns appear, each in extra wide mode. Hovering cursor allows up/down
arrows to scroll screen columns but will not move to missing columns.

EXPECTED RESULT

The ability to see complete list of profiles and scroll or mouse to end of
list.



SOFTWARE/OS VERSIONS :: OpenSuSE 15.1 64bit 4.12.14-lp151.28.91

Linux/KDE Plasma: Kde 
KDE Plasma Version: 5.12.8
KDE Frameworks Version: 5.55.0
Qt Version: 5.9.7

ADDITIONAL INFORMATION
Dual Samsung S22E200 on Nvidia GTX 650 Ver. 460.39 3840x1080@101dpi
AMD Phenom II X6 1055T
16G memory

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

[plasmashell] [Bug 433141] ksysguardd plasmoids are strangely "bilingual", leading to plasmoids not working

2021-02-25 Thread David Redondo
https://bugs.kde.org/show_bug.cgi?id=433141

David Redondo  changed:

   What|Removed |Added

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

--- Comment #7 from David Redondo  ---
Ok if they are fine, then I will close this, seems like you figured the out the
issue with the names of the hard drives

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

[calligraplan] [Bug 433637] New: Cannot add first taskmodules directory

2021-02-25 Thread Dag Andersen
https://bugs.kde.org/show_bug.cgi?id=433637

Bug ID: 433637
   Summary: Cannot add first taskmodules directory
   Product: calligraplan
   Version: unspecified
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: dag.ander...@kdemail.net
  Reporter: dag.ander...@kdemail.net
  Target Milestone: ---

SUMMARY
Needs to have at least one dir configured to be able to add more.


STEPS TO REPRODUCE
1. 
2. 
3. 

OBSERVED RESULT


EXPECTED RESULT


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

ADDITIONAL INFORMATION

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

[plasmashell] [Bug 398440] plasmashell crashes on wayland in DeclarativeMimeData::DeclarativeMimeData() when dragging a file from dolphin over a panel

2021-02-25 Thread Alex
https://bugs.kde.org/show_bug.cgi?id=398440

--- Comment #33 from Alex  ---
Still occurs in 5.21.1. :/

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

[krunner] [Bug 433636] New: Add "howto" use intructions in Krunner plugin descriptions

2021-02-25 Thread Dan Dascalescu
https://bugs.kde.org/show_bug.cgi?id=433636

Bug ID: 433636
   Summary: Add "howto" use intructions in Krunner plugin
descriptions
   Product: krunner
   Version: 5.21.1
  Platform: Neon Packages
OS: Linux
Status: REPORTED
  Severity: task
  Priority: NOR
 Component: general
  Assignee: alexander.loh...@gmx.de
  Reporter: ddascalescu+...@gmail.com
CC: plasma-b...@kde.org
  Target Milestone: ---

SUMMARY
While some KRunner plugins are pretty obvious use use, and others show
themselves automatically (e.g. calculator) or have setting (e.g. the trigger
word for Spell Checker), it' unclear how to use certain KRunner plugins.

For example, what does "Date and Time" do? The description says "The current
date and time, locally or in any timezone", but I don't see that displayed
anywhere when I invoke KRunner. I tried typing "next monday" or other natural
format dates, thinking I'd get a result like "3/1/2021", but no.

Another example is KWin - "Interact with the Plasma Compositor" - how exactly? 

Same for "Plasma Desktop Shell"

Lastly, "Desktop Sessions (Fast user switching)"

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

[valgrind] [Bug 432801] Valgrind 3.16.1 reports a jump based on uninitialized memory somehow related to clang and signals

2021-02-25 Thread Eyal
https://bugs.kde.org/show_bug.cgi?id=432801

--- Comment #9 from Eyal  ---
Oops, I spoke to soon.  It's a bug in clang.  Here's code that you can try:

#include 
#include 
#include 
#include 

void foo() {
// Put the garbage number 123 into eax.
// It's caller-saved so no problem.
__asm__ ("lea 123, %eax;");

// xmm variables are all caller-saved, too.
// Fill them with garbage.
__asm__ ("movd %eax, %xmm0");
__asm__ ("punpcklbw %xmm0, %xmm0");
__asm__ ("punpcklbw %xmm0, %xmm0");
__asm__ ("punpcklbw %xmm0, %xmm0");
__asm__ ("punpcklbw %xmm0, %xmm0");

__asm__ ("movd %eax, %xmm1");
__asm__ ("punpcklbw %xmm1, %xmm1");
__asm__ ("punpcklbw %xmm1, %xmm1");
__asm__ ("punpcklbw %xmm1, %xmm1");
__asm__ ("punpcklbw %xmm1, %xmm1");

__asm__ ("movd %eax, %xmm2");
__asm__ ("punpcklbw %xmm2, %xmm2");
__asm__ ("punpcklbw %xmm2, %xmm2");
__asm__ ("punpcklbw %xmm2, %xmm2");
__asm__ ("punpcklbw %xmm2, %xmm2");

__asm__ ("movd %eax, %xmm3");
__asm__ ("punpcklbw %xmm3, %xmm3");
__asm__ ("punpcklbw %xmm3, %xmm3");
__asm__ ("punpcklbw %xmm3, %xmm3");
__asm__ ("punpcklbw %xmm3, %xmm3");

__asm__ ("movd %eax, %xmm4");
__asm__ ("punpcklbw %xmm4, %xmm4");
__asm__ ("punpcklbw %xmm4, %xmm4");
__asm__ ("punpcklbw %xmm4, %xmm4");
__asm__ ("punpcklbw %xmm4, %xmm4");
}

int main() {
  char pattern[] = "0123456789";
  pattern[9] = 0;
  const unsigned long plen = strlen(pattern);
  foo();
  size_t hp=0;
  for (size_t i = 0; i < plen; ++i)
hp += pattern[i];
  volatile int j = 0;
  if (hp==j) {
j++;
  }
  printf("%ld\n", hp);
  return 1;
}

Run this with and without foo commented and see that the results are different.
 No valgrind need.

Testing on godbolt, I see that the bug is present even through clang 11.0.1

https://godbolt.org/z/6s1rTd

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

[krita] [Bug 433635] New: Keyboard shortcut broken (only "V' and "R" works) and eraser mode can't be activated

2021-02-25 Thread Rony Pratama
https://bugs.kde.org/show_bug.cgi?id=433635

Bug ID: 433635
   Summary: Keyboard shortcut broken (only "V' and "R" works) and
eraser mode can't be activated
   Product: krita
   Version: 4.4.2
  Platform: Microsoft Windows
OS: Microsoft Windows
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: Usability
  Assignee: krita-bugs-n...@kde.org
  Reporter: nos...@gmail.com
  Target Milestone: ---

Created attachment 136181
  --> https://bugs.kde.org/attachment.cgi?id=136181=edit
as you can see only two options that appears on this view menu. This also
happens to the other menus too.

Most options from the top menus also missing, it's on attachment.

I have tried reinstalling, resetting the configuration, and trying the portable
version but the issues still persist. 

My computer's latest system update is about 3 weeks before this bug appeared.


ADDITIONAL INFORMATION

Krita

 Version: 4.4.2
 Languages: en_US, en
 Hidpi: true

Qt

  Version (compiled): 5.12.9
  Version (loaded): 5.12.9

OS Information

  Build ABI: x86_64-little_endian-llp64
  Build CPU: x86_64
  CPU: x86_64
  Kernel Type: winnt
  Kernel Version: 10.0.19042
  Pretty Productname: Windows 10 (10.0)
  Product Type: windows
  Product Version: 10

OpenGL Info

  Vendor:  "ATI Technologies Inc." 
  Renderer:  "AMD Radeon(TM) R5 Graphics" 
  Version:  "4.6.13596 Compatibility Profile Context 20.10.35.02 27.20.1034.6" 
  Shading language:  "4.60" 
  Requested format:  QSurfaceFormat(version 2.0, options
QFlags(), depthBufferSize -1, redBufferSize -1,
greenBufferSize -1, blueBufferSize -1, alphaBufferSize -1, stencilBufferSize
-1, samples -1, swapBehavior QSurfaceFormat::DefaultSwapBehavior, swapInterval
1, colorSpace QSurfaceFormat::DefaultColorSpace, profile 
QSurfaceFormat::NoProfile) 
  Current format:QSurfaceFormat(version 4.6, options
QFlags(DeprecatedFunctions), depthBufferSize 0,
redBufferSize 8, greenBufferSize 8, blueBufferSize 8, alphaBufferSize 8,
stencilBufferSize 8, samples 0, swapBehavior QSurfaceFormat::DoubleBuffer,
swapInterval 1, colorSpace QSurfaceFormat::sRGBColorSpace, profile 
QSurfaceFormat::CompatibilityProfile) 
 Version: 4.6
 Supports deprecated functions true 
 is OpenGL ES: false 

QPA OpenGL Detection Info 
  supportsDesktopGL: true 
  supportsAngleD3D11: true 
  isQtPreferAngle: true 

Hardware Information

  GPU Acceleration: none
  Memory: 3968 Mb
  Number of Cores: 2
  Swap Location: C:/Users/ASUS/AppData/Local/Temp

Current Settings

  Current Swap Location: C:/Users/ASUS/AppData/Local/Temp
  Current Swap Location writable: true
  Undo Enabled: true
  Undo Stack Limit: 30
  Use OpenGL: false
  Use OpenGL Texture Buffer: true
  Use AMD Vectorization Workaround: false
  Canvas State: OPENGL_SUCCESS
  Autosave Interval: 900
  Use Backup Files: true
  Number of Backups Kept: 1
  Backup File Suffix: ~
  Backup Location: Same Folder as the File
  Backup Location writable: false
  Use Win8 Pointer Input: false
  Use RightMiddleTabletButton Workaround: false
  Levels of Detail Enabled: false
  Use Zip64: false


Display Information
Number of screens: 1
Screen: 0
Name: \\.\DISPLAY1
Depth: 32
Scale: 1
Resolution in pixels: 1366x768
Manufacturer: 
Model: 
Refresh Rate: 60

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

[kdenlive] [Bug 421306] Blank preview and rendered video after switching clips

2021-02-25 Thread Julius Künzel
https://bugs.kde.org/show_bug.cgi?id=421306

Julius Künzel  changed:

   What|Removed |Added

 Status|NEEDSINFO   |RESOLVED
 Resolution|WAITINGFORINFO  |FIXED

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

[kdenlive] [Bug 417031] 19.12: unusable: clip/project play very jerky, play head and audio out of sync

2021-02-25 Thread Julius Künzel
https://bugs.kde.org/show_bug.cgi?id=417031

Julius Künzel  changed:

   What|Removed |Added

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

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

[kate] [Bug 268913] Load a default session that can be saved on application closure, so session saving is automatic like a web browser

2021-02-25 Thread Marcell Fulop
https://bugs.kde.org/show_bug.cgi?id=268913

Marcell Fulop  changed:

   What|Removed |Added

 CC||marek...@protonmail.com

--- Comment #11 from Marcell Fulop  ---
Isn't 418183 also a duplicate?

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

[kdenlive] [Bug 421306] Blank preview and rendered video after switching clips

2021-02-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=421306

--- Comment #2 from kenai1...@gmail.com ---
I didn't use appimage. However, the bug has vanished after updating to a newer
version of MLT (which happened a few months ago, sorry for not informing
earlier).

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

[krita] [Bug 433634] New: Segmentation fault at startup. Seems to be an issue with graphics initialization relating to deepin.

2021-02-25 Thread Holden Green
https://bugs.kde.org/show_bug.cgi?id=433634

Bug ID: 433634
   Summary: Segmentation fault at startup. Seems to be an issue
with graphics initialization relating to deepin.
   Product: krita
   Version: git master
  Platform: Manjaro
OS: Linux
Status: REPORTED
  Severity: crash
  Priority: NOR
 Component: General
  Assignee: krita-bugs-n...@kde.org
  Reporter: awesomeholdengr...@gmail.com
  Target Milestone: ---

I have tried updating Krita and building from source yesterday. Krita used to
work, but I have been having this issue for a while that it immediately crashes
(segfault) at initialization.


These I assume are the steps reproduce.
1. Install Manjaro KDE.
2. Install deepin packages.
3. Install krita.
4. Enjoy not being able to use Krita I guess.

I used gdb for debugging.

Output after running:
```
Thread 1 "krita" received signal SIGSEGV, Segmentation fault.
0x7fffee34a3fa in
deepin_platform_plugin::DPlatformIntegration::~DPlatformIntegration() () from
/usr/lib/qt/plugins/platforms/libdxcb.so
```

Output after backtracing:
```
#0  0x7fffee34a3fa in
deepin_platform_plugin::DPlatformIntegration::~DPlatformIntegration() () at
/usr/lib/qt/plugins/platforms/libdxcb.so
#1  0x7fffee34a41a in
deepin_platform_plugin::DPlatformIntegration::~DPlatformIntegration() () at
/usr/lib/qt/plugins/platforms/libdxcb.so
#2  0x72b1e8fc in QGuiApplicationPrivate::~QGuiApplicationPrivate() ()
at /usr/lib/libQt5Gui.so.5
#3  0x72b1ec7a in QGuiApplicationPrivate::~QGuiApplicationPrivate() ()
at /usr/lib/libQt5Gui.so.5
#4  0x7fffee348fba in
deepin_platform_plugin::VtableHook::autoCleanVtable(void const*) () at
/usr/lib/qt/plugins/platforms/libdxcb.so 
#5  0x72b21bca in QGuiApplication::~QGuiApplication() ()
at /usr/lib/libQt5Gui.so.5
#6  0x76e849ac in
QScopedPointerDeleter::cleanup(QGuiApplication*)
(pointer=0x5769bd60)  
at /usr/include/qt/QtCore/qscopedpointer.h:52
#7  QScopedPointer
>::~QScopedPointer() (this=, __in_chrg=)  
at /usr/include/qt/QtCore/qscopedpointer.h:107
#8  KisOpenGLModeProber::probeFormat(KisOpenGL::RendererConfig const&, bool)
(this=this@entry=0x77fb6e18 <(anonymous
namespace)::Q_QGS_s_instance::innerFunction()::holder>, rendererConfig=...,
adjustGlobalState=adjustGlobalState@entry=true)
at /home/holden/kritadev/krita/libs/ui/opengl/KisOpenGLModeProber.cpp:152
#9  0x76e5f0ba in
KisOpenGL::selectSurfaceConfig(KisOpenGL::OpenGLRenderer,
KisConfig::RootSurfaceFormat, bool)   
(preferredRenderer=preferredRenderer@entry=KisOpenGL::RendererAuto,
preferredRootSurfaceFormat=preferredRootSurfaceFormat@entry=KisConfig::BT709_G22,
enableDebug=enableDebug@entry=false)
at /home/holden/kritadev/krita/libs/ui/opengl/kis_opengl.cpp:779
#10 0x55e29a8a in main(int, char**)
(argc=, argv=0x7fffd7b8)
at /home/holden/kritadev/krita/krita/main.cc:288
```

I would like to get Krita working on my system.

Linux/KDE Plasma: 5.10.2-2-MANJARO
KDE Plasma Version: 5.20.4
KDE Frameworks Version: 5.77.0
Qt Version: 5.15-2

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

[krita] [Bug 432763] Random stamp glitches on stroke with smudge engine(dull) and texture

2021-02-25 Thread Dmitry Kazakov
https://bugs.kde.org/show_bug.cgi?id=432763

Dmitry Kazakov  changed:

   What|Removed |Added

 CC||dimul...@gmail.com
   Assignee|krita-bugs-n...@kde.org |dimul...@gmail.com

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

[krita] [Bug 433633] New: Krita crashed when moving a selection created with magnetic selection tool

2021-02-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=433633

Bug ID: 433633
   Summary: Krita crashed when moving a selection created with
magnetic selection tool
   Product: krita
   Version: 4.4.2
  Platform: Neon Packages
OS: Linux
Status: REPORTED
  Keywords: drkonqi
  Severity: crash
  Priority: NOR
 Component: General
  Assignee: krita-bugs-n...@kde.org
  Reporter: zor...@vivaldi.net
  Target Milestone: ---

Application: krita (4.4.2)

Qt Version: 5.15.2
Frameworks Version: 5.79.0
Operating System: Linux 5.4.0-66-generic x86_64
Windowing System: X11
Drkonqi Version: 5.21.1
Distribution: KDE neon User Edition 5.21

-- Information about the crash:
SUMMARY
Krita crashes when attempting to move a selection that was created with the
magnetic selection tool

STEPS TO REPRODUCE
1. Create selection using magnetic selection tool
2. Click edge of selection and attempt to drag somewhere else

OBSERVED RESULT
Krita immediately crashes when dragging selection

EXPECTED RESULT
Selection is moved with cursor to new area of image

The crash can be reproduced every time.

-- Backtrace:
Application: Krita (krita), signal: Segmentation fault

[New LWP 7685]
[New LWP 7686]
[New LWP 7687]
[New LWP 7688]
[New LWP 7689]
[New LWP 7699]
[New LWP 7700]
[New LWP 7703]
[New LWP 7704]
[New LWP 7705]
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
0x7f157c50aaff in __GI___poll (fds=0x7ffcabf5ae68, nfds=1, timeout=1000) at
../sysdeps/unix/sysv/linux/poll.c:29
[Current thread is 1 (Thread 0x7f15774cc680 (LWP 7667))]

Thread 11 (Thread 0x7f1513fff700 (LWP 7705)):
#0  __GI___libc_read (nbytes=16, buf=0x7f1513ffead0, fd=38) at
../sysdeps/unix/sysv/linux/read.c:26
#1  __GI___libc_read (fd=38, buf=0x7f1513ffead0, nbytes=16) at
../sysdeps/unix/sysv/linux/read.c:24
#2  0x7f1579f3a89f in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#3  0x7f1579ef1cde in g_main_context_check () from
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#4  0x7f1579ef2132 in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#5  0x7f1579ef22c3 in g_main_context_iteration () from
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#6  0x7f157caf0fbb in
QEventDispatcherGlib::processEvents(QFlags) ()
from /lib/x86_64-linux-gnu/libQt5Core.so.5
#7  0x7f157ca951ab in
QEventLoop::exec(QFlags) () from
/lib/x86_64-linux-gnu/libQt5Core.so.5
#8  0x7f157c8afa12 in QThread::exec() () from
/lib/x86_64-linux-gnu/libQt5Core.so.5
#9  0x7f156944238a in ?? () from /lib/x86_64-linux-gnu/libQt5Quick.so.5
#10 0x7f157c8b0bac in ?? () from /lib/x86_64-linux-gnu/libQt5Core.so.5
#11 0x7f157a7be609 in start_thread (arg=) at
pthread_create.c:477
#12 0x7f157c517293 in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:95

Thread 10 (Thread 0x7f151700 (LWP 7704)):
#0  0x7f1579f3f24d in g_mutex_lock () from
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#1  0x7f1579ef1214 in g_main_context_acquire () from
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#2  0x7f1579ef2045 in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#3  0x7f1579ef22c3 in g_main_context_iteration () from
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#4  0x7f157caf0fbb in
QEventDispatcherGlib::processEvents(QFlags) ()
from /lib/x86_64-linux-gnu/libQt5Core.so.5
#5  0x7f157ca951ab in
QEventLoop::exec(QFlags) () from
/lib/x86_64-linux-gnu/libQt5Core.so.5
#6  0x7f157c8afa12 in QThread::exec() () from
/lib/x86_64-linux-gnu/libQt5Core.so.5
#7  0x7f156918cfa9 in ?? () from /lib/x86_64-linux-gnu/libQt5Qml.so.5
#8  0x7f157c8b0bac in ?? () from /lib/x86_64-linux-gnu/libQt5Core.so.5
#9  0x7f157a7be609 in start_thread (arg=) at
pthread_create.c:477
#10 0x7f157c517293 in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:95

Thread 9 (Thread 0x7f151f7fe700 (LWP 7703)):
#0  syscall () at ../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
#1  0x7f157c8b3130 in ?? () from /lib/x86_64-linux-gnu/libQt5Core.so.5
#2  0x7f157c8b2f96 in QSemaphore::tryAcquire(int, int) () from
/lib/x86_64-linux-gnu/libQt5Core.so.5
#3  0x7f157deba857 in KisTileDataSwapper::waitForWork (this=) at ./libs/image/tiles3/swap/kis_tile_data_swapper.cpp:86
#4  0x7f157debaa3a in KisTileDataSwapper::run (this=0x7f157e221120
<(anonymous namespace)::Q_QGS_s_instance::innerFunction()::holder+64>) at
./libs/image/tiles3/swap/kis_tile_data_swapper.cpp:92
#5  0x7f157c8b0bac in ?? () from /lib/x86_64-linux-gnu/libQt5Core.so.5
#6  0x7f157a7be609 in start_thread (arg=) at
pthread_create.c:477
#7  0x7f157c517293 in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:95

Thread 8 (Thread 0x7f1536526700 (LWP 7700)):
#0  0x7f157c50aaff in __GI___poll (fds=0x7f1524004a60, nfds=1, timeout=-1)
at ../sysdeps/unix/sysv/linux/poll.c:29
#1  0x7f1579ef218e in ?? () from 

[digikam] [Bug 433226] Crash - searching new entries

2021-02-25 Thread Ette
https://bugs.kde.org/show_bug.cgi?id=433226

--- Comment #3 from Ette  ---
Hi,
No more crashes since the last download.
I´m still testing.
THX

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

[Spectacle] [Bug 432260] Spectacle fails to create rectangular and active window screenshots on Wayland

2021-02-25 Thread Alex
https://bugs.kde.org/show_bug.cgi?id=432260

Alex  changed:

   What|Removed |Added

 CC||alex...@protonmail.com

--- Comment #16 from Alex  ---
I'm unable to reproduce this at all, rectangular region and active window
screenshots work fine for me. Running spectacle in the terminal, the only
message I get when initiating any screenshot, including rectangular region, is:

qt.qpa.wayland: Wayland does not support QWindow::requestActivate()

I am on Plasma 5.21.1, Spectacle 20.12.2, Frameworks 5.79.0, Qt 5.12.2, Fedora
34.

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

[valgrind] [Bug 432801] Valgrind 3.16.1 reports a jump based on uninitialized memory somehow related to clang and signals

2021-02-25 Thread Eyal
https://bugs.kde.org/show_bug.cgi?id=432801

--- Comment #8 from Eyal  ---
Even vgdb isn't helping me.  Here's the code that I'm using:

#include 
#include 
#include 
#include 

int main()
{
  struct sigaction act;
  if (sigaction(SIGTERM, 0, ) == 1) {
return 12;
  }
  if (sigaction(SIGTERM, 0, ) == 1) {
return 12;
  }

  char pattern[] = "0123456789";
pattern[8] = 0;
const unsigned long plen = strlen(pattern);
size_t hp=0;
for (size_t i = 0; i < plen; ++i)
hp += pattern[i];
volatile int j = 0;
if (hp==j) {
  j++;
}
return 1;
}

If I switch the pattern[8] with pattern[9] then the output is nearly identical
but it fails a memcheck test in valgrind.

I used vgdb to step through the code and I'm seeing strange behavior.  In the
code, there are two instances of movq to an xmm register:

   0x004011ff <+191>:   je 0x4012c8 
   0x00401205 <+197>:   mov%rbx,%rdi
   0x00401208 <+200>:   sub%rsi,%rdi
   0x0040120b <+203>:   movq   %r8,%xmm0

and

   0x004012c8 <+392>:   movq   %r8,%xmm0


Identical instructions.  Depending on the pattern[] line above, either the jump
is taken or not.  In either case, eventually there is a movq from register r8
into xmm0.

In the working case, I see that $r8 is successfully copied into $xmm0 and the
vbits are all cleared to 0, as it expected.  But in the broken case, the value
is not copied and the vbits are wrong, too!  It might just be wrong when
looking at the result in vgdb because the output is right in the end.

If someone can help me debug this, I'm willing to put in some time.

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

[kate] [Bug 423253] Caret gets stuck when moving vertically through soft-wrapped lines.

2021-02-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=423253

n3wa...@gmail.com changed:

   What|Removed |Added

 CC||n3wa...@gmail.com

--- Comment #2 from n3wa...@gmail.com ---
I'd like to bump this, I ran into this bug recently and its very annoying.

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

[kdenlive] [Bug 398239] Filter “Delogo” is not configurable (-1 for all parameters) and has no effect

2021-02-25 Thread Dirk
https://bugs.kde.org/show_bug.cgi?id=398239

--- Comment #14 from Dirk  ---
   It initially was limited to a certain area in the top left. By
   changing one of the values it seems like the area was expanded to the
   whole size of the video without me noticing it.
   Manually dragging the corners/center or adjusting the size afterwards
   works as expected. The filter works as described, thanks for the hint!

   Am 25.02.2021 22:56 schrieb Julius Künzel :

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

 --- Comment #13 from Julius Künzel 
 ---
 You have to adjust the size to limit the effect to a certain area.
 Simply drag
 the red handles on the monitor (edit mode needs to be active) or
 use the effect
 /composition stack.

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

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

[systemsettings] [Bug 433567] Problem sddm end session , black screen

2021-02-25 Thread cappelikan
https://bugs.kde.org/show_bug.cgi?id=433567

--- Comment #2 from cappelikan  ---
(In reply to Nate Graham from comment #1)
> Мені складно зрозуміти, в чому проблема, вибачте. Коли ви знову введете свій
> пароль, я міг би очікувати, що він знову ввійде до вас. Ви можете пояснити
> проблему? Дякую!

The problem is that when I exit the session, I get a black screen and a message
on the monitor out of range

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

[kate] [Bug 424172] There are no more chars for next bookmark

2021-02-25 Thread Jan Paul Batrina
https://bugs.kde.org/show_bug.cgi?id=424172

Jan Paul Batrina  changed:

   What|Removed |Added

 CC||pe...@pagemakers.co.nz

--- Comment #5 from Jan Paul Batrina  ---
*** Bug 433622 has been marked as a duplicate of this bug. ***

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

[kate] [Bug 433622] Adding a book mark generates a message "there are no more chars for the next bookmark"

2021-02-25 Thread Jan Paul Batrina
https://bugs.kde.org/show_bug.cgi?id=433622

Jan Paul Batrina  changed:

   What|Removed |Added

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

--- Comment #3 from Jan Paul Batrina  ---
This has been recently fixed with
https://invent.kde.org/frameworks/ktexteditor/-/merge_requests/93

Based on the tagged releases, the fix will only get to kate in the next
version.

Thank you for the bug report! If the issue still persists after next version,
please feel free to reopen this bug.

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

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

[Spectacle] [Bug 431548] Spectacle captures some other screen

2021-02-25 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=431548

Bug Janitor Service  changed:

   What|Removed |Added

 Resolution|WAITINGFORINFO  |WORKSFORME
 Status|NEEDSINFO   |RESOLVED

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

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

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

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

[krita] [Bug 433624] Krita crashes when closing one of multiple tabs

2021-02-25 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=433624

Bug Janitor Service  changed:

   What|Removed |Added

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

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

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

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

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

[kwin] [Bug 432659] Certain kinds of popups do not appear when using Xwayland

2021-02-25 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=432659

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

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

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

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

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

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

[kwin] [Bug 432436] Keyboard layout with variant in 2nd slot prevents switching back to layout in 1st slot

2021-02-25 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=432436

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

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

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

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

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

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

[Plasma SDK] [Bug 424783] Icons in cuttlefish have a diagonal shift by 1px

2021-02-25 Thread Bug Janitor Service
https://bugs.kde.org/show_bug.cgi?id=424783

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

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

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

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

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

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

[plasma-nm] [Bug 433632] Network speed reported incorrectly in system tray icon when first open

2021-02-25 Thread Trần Nam Tuấn
https://bugs.kde.org/show_bug.cgi?id=433632

--- Comment #1 from Trần Nam Tuấn  ---
Created attachment 136180
  --> https://bugs.kde.org/attachment.cgi?id=136180=edit
GIF demonstrates the bug

I attached a GIF to illustrate the problem. Notice the wired connection speed
report. It appeared that the longer you didn't open the widget the larger the
number would get when you finally open it.

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

[plasma-nm] [Bug 433632] New: Network speed reported incorrectly in system tray icon when first open

2021-02-25 Thread Trần Nam Tuấn
https://bugs.kde.org/show_bug.cgi?id=433632

Bug ID: 433632
   Summary: Network speed reported incorrectly in system tray icon
when first open
   Product: plasma-nm
   Version: 5.21.1
  Platform: Archlinux Packages
OS: Linux
Status: REPORTED
  Severity: minor
  Priority: NOR
 Component: general
  Assignee: jgrul...@redhat.com
  Reporter: tuantran1632...@gmail.com
  Target Milestone: ---

SUMMARY
The default networks tray icon report incorrect speed when first open up.

STEPS TO REPRODUCE
1. Have the default network tray icon show on system tray panel.
2. Connect to a network and have some network activity.
3. Close the widget and reopen it.

OBSERVED RESULT
When first open up the widget, the speed report stays at zero for one second
before jumping up to a few gibibytes per second and settling back down to the
correct mibibytes per second (My max speed is around 8~10 MiB/s).

EXPECTED RESULT
The network speed should be reported correctly.

SOFTWARE/OS VERSIONS
Linux distro: Archlinux
KDE Plasma Version: 5.21.1
KDE Frameworks Version: 5.79.0
Qt Version: 5.15.2

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

[plasmashell] [Bug 433631] New: Icons and rounded corners are black

2021-02-25 Thread Hamm Khan
https://bugs.kde.org/show_bug.cgi?id=433631

Bug ID: 433631
   Summary: Icons and rounded corners are black
   Product: plasmashell
   Version: 5.20.5
  Platform: Debian unstable
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: k...@davidedmundson.co.uk
  Reporter: dathambro4l...@gmail.com
CC: plasma-b...@kde.org
  Target Milestone: 1.0

Created attachment 136179
  --> https://bugs.kde.org/attachment.cgi?id=136179=edit
Neofetch and Start Menu.

SUMMARY
Every icon, from the start button, title bar actions, user PFP, logout options,
app icons, to the System Tray is black. Switching icon themes does nothing.

Corners are replaced with black boxes. Windows, Widgets, and Applets are
affected. 

STEPS TO REPRODUCE
1. ?
2. ?
3. ?

OBSERVED RESULT


EXPECTED RESULT


SOFTWARE/OS VERSIONS
Windows: N/A
macOS: N/A
Linux/KDE Plasma: Debian GNU/Linux bullseye/sid
(available in About System)
KDE Plasma Version: 5.20.5
KDE Frameworks Version: 5.78.0
Qt Version: 5.15.2

ADDITIONAL INFORMATION

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

[plasma-pa] [Bug 433630] New: Plasma applet appears not to list ALL output devices

2021-02-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=433630

Bug ID: 433630
   Summary: Plasma applet appears not to list ALL output devices
   Product: plasma-pa
   Version: 5.21.0
  Platform: openSUSE RPMs
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: applet
  Assignee: now...@gmail.com
  Reporter: t...@gmx.com
CC: plasma-b...@kde.org
  Target Milestone: ---

Created attachment 136178
  --> https://bugs.kde.org/attachment.cgi?id=136178=edit
Display of settings for audio device

SUMMARY
Plasma 5.21 introduced new behaviour for the audio volume applet and access to
the output device is moved to the system settings. It seams that not all output
devices are listed or I'm missing the logic here. The change broke the work
done in #353232

I have multiple output devices for my sound card. I can output to SPDIF or
Analog. When I have SPDIF selected I have to go through system settings to
switch to Analog and vice versa. 

When Analog is active a small icon appears next to the label in the device tab,
allowing me to switch between different profiles for Analog. When the SPDIF
output is active no such setting is available. 

EXPECTED RESULT
The device tab shows all output profiles for switching between different
outputs. 

In the attached screenshot I show the settings for the Analog in the drop-out
in the plasma applet and the settings option available for my device. 

SOFTWARE/OS VERSIONS
Operating System: openSUSE Tumbleweed 20210222
KDE Plasma Version: 5.21.0
KDE Frameworks Version: 5.79.0
Qt Version: 5.15.2
Kernel Version: 5.10.16-1-default
OS Type: 64-bit
Graphics Platform: Wayland

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

[kdenlive] [Bug 433626] The subtitle tool input traditional Chinese garbled

2021-02-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=433626

2wxsy5823...@opayq.com changed:

   What|Removed |Added

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

--- Comment #2 from 2wxsy5823...@opayq.com ---
Can you please check the encoding (UTF-8, Big5, etc.) of the srt subtitle file?

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

[valgrind] [Bug 433629] New: valgrind/README has type "abd" instead of "and"

2021-02-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=433629

Bug ID: 433629
   Summary: valgrind/README has type "abd" instead of "and"
   Product: valgrind
   Version: unspecified
  Platform: unspecified
OS: Unspecified
Status: REPORTED
  Severity: minor
  Priority: NOR
 Component: general
  Assignee: jsew...@acm.org
  Reporter: sat...@unist.ac.kr
  Target Milestone: ---

There is possible typo in valgrind/README on line 24, "abd" instead of "and"

https://sourceware.org/git/?p=valgrind.git;a=blob;f=README;h=511027ae9bd14fe327e5206596dc9a0c3b6ad1f7;hb=HEAD#l24

Excerpt:
... a call-graph generating cache abd
branch-prediction profiler, and a heap profiler.

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

[systemsettings] [Bug 433081] Global theme KCM location in the header confuses people and does not adequately communicate its parent status

2021-02-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=433081

--- Comment #9 from t...@gmx.com ---
The label "Appearance" covers the content properly. So I don't understand the
need to show-case that "global theme" relates to all sub settings. That is kind
of covered by the name itself. What may help is that the header name is
"Appearance" and the first item "Global Theme" with a hover explaining that
changing the global theme touches all appearance related settings. Maybe a
re-label to "Global Appearance" helps in clearly stating that it touches
everything. 

As by nature of the settings menu it is not entirely different behaviour using
the global themes, that warrants this different behaviour.

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

[krita] [Bug 433628] New: Filter masks aren't properly hidden when hiding the layer they're attached to

2021-02-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=433628

Bug ID: 433628
   Summary: Filter masks aren't properly hidden when hiding the
layer they're attached to
   Product: krita
   Version: 4.4.3-beta1
  Platform: Appimage
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: General
  Assignee: krita-bugs-n...@kde.org
  Reporter: tomtomtomreportin...@gmail.com
  Target Milestone: ---

SUMMARY
The canvas view isn't visually updated properly when hiding layers that utilize
filter masks.

STEPS TO REPRODUCE
1. Create a filter mask for Random Noise.
2. Hide the paint layer that the filter mask is attached to.

OBSERVED RESULT
The Random Noise is still visible. Hiding the filter mask and then unhiding it
will properly hide the Random Noise.


EXPECTED RESULT
The filter mask should always be hidden when the layer it's attached to is
hidden.

SOFTWARE/OS VERSIONS
Linux/KDE Plasma: Debian sid
(available in About System)
KDE Plasma Version: 5.20.5
KDE Frameworks Version: 5.78.0
Qt Version: 5.12.9 (Appimage)

ADDITIONAL INFORMATION
>From what I can tell, this doesn't appear to be a regression as it happens as
far back as 4.1.0.

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

[kwin] [Bug 433540] Wayland cursor hiding via setting NULL cursor surface is broken

2021-02-25 Thread Cameron Gutman
https://bugs.kde.org/show_bug.cgi?id=433540

--- Comment #4 from Cameron Gutman  ---
Aha! I was staring at these logs and never noticed the missing serial. Thanks
for your help.

This is now fixed in SDL -
https://github.com/libsdl-org/SDL/commit/8c5b7af2d2f317c42c5437aa4b4dc7c3f5a06057

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

[krita] [Bug 432329] Painting on filter masks created from vector selections generally produces crashes or artifacts

2021-02-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=432329

--- Comment #6 from tomtomtomreportin...@gmail.com ---
Created attachment 136177
  --> https://bugs.kde.org/attachment.cgi?id=136177=edit
Filter mask artifact

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

[krita] [Bug 432329] Painting on filter masks created from vector selections generally produces crashes or artifacts

2021-02-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=432329

--- Comment #5 from tomtomtomreportin...@gmail.com ---
Hi Dmitry, while the crash does seem to be fixed now in 4.4.3 beta-1, the
rectangular artifacts described in the report still seem to exist. Also, it
seems that these artifacts are more than visual, as they seem to genuinely
affect the painting area, so they cannot be wiped away by hiding and unhiding
the layer. I'll attach an image showing this artifact and how it affects the
canvas.

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

[Powerdevil] [Bug 433452] Power management ignores sleep and screen locking suppression

2021-02-25 Thread Wyatt Childers
https://bugs.kde.org/show_bug.cgi?id=433452

--- Comment #7 from Wyatt Childers  ---
(In reply to Wyatt Childers from comment #6)
> Going to add to this, Elisa can actually suppress the lock screen from
> appearing without power management reporting anything in the Battery &
> Brightness portion of the system tray.
> 
> i.e. there seems to be a related issue where apps aren't even visibly
> reported as triggering power suppression.

Additional bug filed for this in: https://bugs.kde.org/show_bug.cgi?id=433627

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

[Powerdevil] [Bug 433627] New: Battery and Brightness doesn't report all power suppressions

2021-02-25 Thread Wyatt Childers
https://bugs.kde.org/show_bug.cgi?id=433627

Bug ID: 433627
   Summary: Battery and Brightness doesn't report all power
suppressions
   Product: Powerdevil
   Version: 5.20.5
  Platform: Fedora RPMs
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: plasma-b...@kde.org
  Reporter: dark...@nearce.com
  Target Milestone: ---

SUMMARY
The Battery and Brightness portion of the system tray doesn't report all power
suppression actions.

STEPS TO REPRODUCE
1. Set screen locker to auto lock after 1 minute
2. Open Elisa 
3. Wait 

OBSERVED RESULT
The screen never locks, and nothing is reported in the Battery and Brightness
portion of the tray.

EXPECTED RESULT
Elisa's power suppression is reported in the tray.

SOFTWARE/OS VERSIONS
Kernel: 5.10.16-200.fc33.x86_64
KDE Plasma Version: 5.20.5
KDE Frameworks Version: 5.78.0
Qt Version: 5.15.2

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

[Powerdevil] [Bug 433452] Power management ignores sleep and screen locking suppression

2021-02-25 Thread Wyatt Childers
https://bugs.kde.org/show_bug.cgi?id=433452

--- Comment #6 from Wyatt Childers  ---
Going to add to this, Elisa can actually suppress the lock screen from
appearing without power management reporting anything in the Battery &
Brightness portion of the system tray.

i.e. there seems to be a related issue where apps aren't even visibly reported
as triggering power suppression.

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

[Akonadi] [Bug 433252] akonadi_pop3_resource crash

2021-02-25 Thread asdinnie
https://bugs.kde.org/show_bug.cgi?id=433252

asdinnie  changed:

   What|Removed |Added

 CC||k...@healingpeople.org

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

[Discover] [Bug 433599] packagekit blocked by needrestart

2021-02-25 Thread Aleix Pol
https://bugs.kde.org/show_bug.cgi?id=433599

Aleix Pol  changed:

   What|Removed |Added

 Resolution|--- |UPSTREAM
 Status|REPORTED|RESOLVED

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

[Discover] [Bug 433599] packagekit blocked by needrestart

2021-02-25 Thread Aleix Pol
https://bugs.kde.org/show_bug.cgi?id=433599

--- Comment #1 from Aleix Pol  ---
Sounds like an issue in packagekit, can you please report it there?
https://github.com/hughsie/PackageKit/issues

Your assessment here will surely help devs figure it out.

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

[Discover] [Bug 433587] Do not fetch updates/packages on every start of Discover (on OpenSUSE)

2021-02-25 Thread Aleix Pol
https://bugs.kde.org/show_bug.cgi?id=433587

--- Comment #5 from Aleix Pol  ---
It's not only that it's hard to fix. We used to refresh less often but then
sometimes people would get errors that their update wasn't fresh and we'd have
to tell them to F5 and try again, which is very confusing.

In the end, even if we know that 1h ago the cache was refreshed, we can't tell
for sure that all the packages are still current.

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

[Discover] [Bug 433525] Restart required notification at every login

2021-02-25 Thread Aleix Pol
https://bugs.kde.org/show_bug.cgi?id=433525

--- Comment #2 from Aleix Pol  ---
That's weird, can you tell us what's the contents of the following file?
/var/lib/PackageKit/offline-update-competed

Also can you please show us a screenshot of the notification you see?

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

[kdenlive] [Bug 433626] The subtitle tool input traditional Chinese garbled

2021-02-25 Thread 楊景貴
https://bugs.kde.org/show_bug.cgi?id=433626

--- Comment #1 from 楊景貴  ---
Created attachment 136176
  --> https://bugs.kde.org/attachment.cgi?id=136176=edit
The subtitle tool input traditional Chinese garbled

 The subtitle tool input traditional Chinese garbled

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

[kdenlive] [Bug 433626] New: The subtitle tool input traditional Chinese garbled

2021-02-25 Thread 楊景貴
https://bugs.kde.org/show_bug.cgi?id=433626

Bug ID: 433626
   Summary: The subtitle tool input traditional Chinese garbled
   Product: kdenlive
   Version: 20.12.1
  Platform: Other
OS: Microsoft Windows
Status: REPORTED
  Severity: major
  Priority: NOR
 Component: Video Display & Export
  Assignee: j...@kdenlive.org
  Reporter: issacs...@gmail.com
  Target Milestone: ---

1.When importing subtitle files, if you use Traditional Chinese, garbled
characters will appear

STEPS TO REPRODUCE
  1. Project>Subtitle>import Subtitle file
  2. Select a traditional Chinese subtitle
  3. Garbled characters appear 

OBSERVED RESULT
It may be that the font does not support traditional Chinese characters

EXPECTED RESULT
Enter the subtitle file, there should be no garbled characters

2.Traditional Chinese cannot be input directly, but it is possible to copy and
paste text



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

ADDITIONAL INFORMATION

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

[konsole] [Bug 433210] Konsole doesn't show the default profile in the list of profiles

2021-02-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=433210

lylewang...@gmail.com changed:

   What|Removed |Added

 CC||lylewang...@gmail.com

--- Comment #5 from lylewang...@gmail.com ---
In early versions there used to be a checkbox in the profile list to control
whether to show the profile (as an option) in the "New Tab" and "Switch
Profile" (as the form of sub-menu) etc., seems they're gone in latest versions
? It's a bit annoying now every time I do "File - New Tab" from the menu, I
have to go into sub-menu and pick my default profile (before I made only mine
visible so there was no sub-menu in this), possible to bring that checkbox back
? Cheers

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

[plasmashell] [Bug 414834] Plasma crashes on Wayland when I change global theme

2021-02-25 Thread Rex Dieter
https://bugs.kde.org/show_bug.cgi?id=414834

Rex Dieter  changed:

   What|Removed |Added

 CC||rdie...@gmail.com

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

[valgrind] [Bug 433500] DRD regtest faulures when libstdc++ and libgcc debuginfo are installed

2021-02-25 Thread Mark Wielaard
https://bugs.kde.org/show_bug.cgi?id=433500

Mark Wielaard  changed:

   What|Removed |Added

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

--- Comment #8 from Mark Wielaard  ---
(In reply to Paul Floyd from comment #7)
> The testcase passes with a time 0f 60s. But it fails still with 50s. The
> value is likely to be machine dependent - my PC is pretty old though.
> 
> Intel(R) Xeon(R) CPU   W3520  @ 2.67GHz
> 
> About 10 years old.

If the test passes the timeout doesn't really matter. Lets set it to 60 if that
guarantees it passes even on old hardware.

We do have to look at the slowness of the debuginfo parsing.
I also noticed it with the debuginfod support.

But this particular issue seems to be solved by:

Make the dwarf3 reader more robust and less chatty when things go wrong

Skip some stuff when seeing an unknown language, be less chatty about 
parser issues.

All the issues seem to come from the multi-file, that is the shared 
(supplementary or alt) file containing debuginfo shared by all the 
gcc/runtime libraries.

There are a couple of issues that this patch works around:

- The multifile contains entries for the 'D' language, which has some 
  constructs we don't expect.
- We don't read partial units correctly, which means we often don't know 
  the language we are looking at.
- The parser is very chatty about issues it didn't expect (even if they 
  are ignored, it will still output something)

It only shows up with --read-var-info=yes which some tests enable, but 
which is disabled by default.

Also increate the timeout of drd/tests/pth_cleanup_handler.c because
DWARF reading is so slow.

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

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

[valgrind] [Bug 432801] Valgrind 3.16.1 reports a jump based on uninitialized memory somehow related to clang and signals

2021-02-25 Thread Eyal
https://bugs.kde.org/show_bug.cgi?id=432801

--- Comment #7 from Eyal  ---
It seems that the issue is the loop.  When the length of pattern is more than
8, the code runs a routine that is able to sum 8 chars at a time.  It uses xmm
for this.  It only enters that code if the number of bytes to sum is at least
8.

I'm not sure why removing the call to sigaction matters.  Maybe it's an
alignment issue?

Removing the `pattern[0] = '1'` allows the compiler to figure out that the
pattern is a constant and the whole thing gets evaluated at compile-time, as if
constexpr.  That explains why the line is necessary to cause the bug.

The routine to sum 8 bytes at once seems really long to me but I guess clang
has decided that it's faster than doing extra jumps.  If I can figure out how
to have valgrind display the bit-validity values during processing, maybe I can
see which instruction is getting instrumented incorrectly.

I feel that this is a valgrind bug, not a clang bug.

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

[valgrind] [Bug 432215] Add debuginfod functionality

2021-02-25 Thread Mark Wielaard
https://bugs.kde.org/show_bug.cgi?id=432215

Mark Wielaard  changed:

   What|Removed |Added

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

--- Comment #11 from Mark Wielaard  ---
Thanks for adding the documentation, nice to get it in both the manual and the
man page. I tested it on Fedora and Debian using
DEBUGINFOD_URLS=https://debuginfod.elfutils.org/ and it seems to work.

I made a few small changes, added .gitignore entries, removed the extra warning
in the check so it looks less scary and just produces an error and a prereq
skip, turned the read into a while loop, not because I think the results will
really be partial but to keep the length of what was read so we can check for
\n at the end instead of needing to use strchr. I also moved the
find_executable code up into pub_core_pathscan.h so it can be used from
everywhere.

Pushed as:

commit fd4e3fb0ffa3f751f0e7f2e7f4639d4c3773305d (HEAD -> master, origin/master,
origin/HEAD)
Author: Aaron Merey 
Date:   Thu Feb 18 22:58:25 2021 -0500

PR432215 Add debuginfod functionality

debuginfod is an HTTP server for distributing ELF/DWARF debugging
information.  When a debuginfo file cannot be found locally, Valgrind
is able to query debuginfod servers for the file using its build-id.

readelf.c: Add debuginfod_find_debug_file(). Spawns a child process to
exec `debuginfod-find` in order to query servers for the debuginfo
file. Also add helper debuginfod_find_path().

pub_core_pathscan.h: Moved from priv_initimg_pathscan.h in order to use
VG_(find_executable)() in readelf.c.

docs: Add information regarding debuginfod to valgrind.1

memcheck/tests/linux: Add new test debuginfod-check.

tests/vg_regtest.in: Clear $DEBUGINFOD_URLS before running any tests.

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

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

[valgrind] [Bug 431157] PPC_FEATURE2_SCV needs to be masked in AT_HWCAP2

2021-02-25 Thread Carl Love
https://bugs.kde.org/show_bug.cgi?id=431157

Carl Love  changed:

   What|Removed |Added

 Attachment #135371|0   |1
is obsolete||

--- Comment #18 from Carl Love  ---
Created attachment 136175
  --> https://bugs.kde.org/attachment.cgi?id=136175=edit
patch to add support for the scv instruction

Rebased patch on Vaglrind mainline, enabled SCV which was masked out in Mark's
committed patch.   Tested on Power 8 LE, Power BE, Power 9 and prototype
hardware using latest glibc that I can get.  The patch seems to be working and
regression tests pass.  Note, with the latest glibc there are a number of new
regression test failures specifically in helgrind without applying the scv
patch.  The SCV patch doesn't seem to introduce any additional issues.  Will
look into the new baseline regression test failures.

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

[krita] [Bug 432871] Crash on KisMainWindow::slotThemeChanged

2021-02-25 Thread Lynx3d
https://bugs.kde.org/show_bug.cgi?id=432871

Lynx3d  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|REPORTED|CONFIRMED
 CC||lynx.mw+...@gmail.com

--- Comment #6 from Lynx3d  ---
I'm getting the crash too, same backtrace, compiled with Ubuntu 20.04 libs (Qt
5.12.8). Unfortunately Ubuntu doesn't seem to have a package with Qt debug
symbols either...

As the bug marked as duplicate mentions, you need to have closed a document
before accepting new settings to reproduce.
Fusion or Breeze style doesn't seem to matter, crashes either way.

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

[systemsettings] [Bug 433625] Occasional crashes when selecting Settings categories

2021-02-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=433625

--- Comment #1 from nejrobb...@gmail.com ---
Forgot to mention also that I'm running a wayland session.

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

[systemsettings] [Bug 433625] New: Occasional crashes when selecting Settings categories

2021-02-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=433625

Bug ID: 433625
   Summary: Occasional crashes when selecting Settings categories
   Product: systemsettings
   Version: 5.21.1
  Platform: Archlinux Packages
OS: Linux
Status: REPORTED
  Severity: crash
  Priority: NOR
 Component: generic-crash
  Assignee: plasma-b...@kde.org
  Reporter: nejrobb...@gmail.com
  Target Milestone: ---

SUMMARY
Occasionally and randomly, when I select certain top-level categories in System
Settings such as Workspace Behavior, or Display and Monitor (can be any,
really), the Settings application crashes.

STEPS TO REPRODUCE
1. Open Settings
2. Click on any category

OBSERVED RESULT
The Settings app freezes, and then crashes a few seconds later.


EXPECTED RESULT
The Settings app enters the category.

SOFTWARE/OS VERSIONS
Windows: 
macOS: 
Linux/KDE Plasma: ArchLinux
(available in About System)
KDE Plasma Version: plasma-desktop 5.21.1-1
KDE Frameworks Version: plasma-framework 5.79.0-1
Qt Version: qt5-base 5.15.2-5

ADDITIONAL INFORMATION
Segfault: https://del.dog/esomefulec.txt
Not sure if related but I see this in journal as well: 
amdgpu: Clock is not in range of specified clock range for watermark from DAL! 
Using highest water mark set.

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

[kate] [Bug 433622] Adding a book mark generates a message "there are no more chars for the next bookmark"

2021-02-25 Thread Peter
https://bugs.kde.org/show_bug.cgi?id=433622

--- Comment #2 from Peter  ---
Thanks for your question.  No Vi mode - just defaults

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

[Discover] [Bug 433291] Discover only finds one application for x-scheme-handler magnet

2021-02-25 Thread Aleix Pol
https://bugs.kde.org/show_bug.cgi?id=433291

--- Comment #5 from Aleix Pol  ---
It works on my system as well.

Can you please tell is what you get if you run the following command?

appstreamcli what-provides mediatype 'x-scheme-handler/magnet'

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

[krunner] [Bug 433566] Can't find a KCM by searching for a word in its parent group

2021-02-25 Thread Kris Finkenbinder
https://bugs.kde.org/show_bug.cgi?id=433566

--- Comment #4 from Kris Finkenbinder  ---
(In reply to Nate Graham from comment #3)
> Depends on how searching is implemented in Albert. It might need to learn
> how to do this as well as KRunner.
> 
> A cruder caveman fix could be to add the KCM's parent cagetory name to the
> KCM's keyword list, for every KCM that's in a cagetory. This would fix the
> issue automatically for KRunner, Albert, and System Settings. However these
> keywords would need to be manually updated every time a KCM got moved, which
> I can guarantee would get missed, and then the search results would be
> wrong. So it's probably better to go for the programmatic approach of
> teaching these search tools how to find out for themselves what a KCM's
> parent category is, so that it can be used as a search term.

It's my limited understanding that launchers like Albert, just like the typical
application menus built into other DEs like XFCE/MATE/Cinnamon/etc., finds
"applications" by monitoring the appropriate folders for standard .desktop
files. I downloaded balenaEtcher as an AppImage file and was forced to create a
.desktop file in ~/.local/share/applications in order to get it to show up in
the KDE Application Launcher and Albert. Of course that file would need to be
updated if I ever moved the balenaEtcher AppImage file. 

I confirmed that Albert can actually only see the main System Settings
application, it cannot see any of the KCM settings modules as applications. 

The likelihood that any of the third-party launchers will be reprogrammed to
learn the "KDE way" of searching for these modules is highly improbable. The
idea of adding the group name to the KCM keywords will only fix this issue for
anything using KRunner to search. But at least that would be an improvement,
and most KDE users no doubt only care about searching in KRunner or the KDE
Application Launcher.

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

[plasmashell] [Bug 423075] Plasma crashed with "The Wayland connection experienced a fatal error" after right-click on Keyboard Layout applet hidden in system tray

2021-02-25 Thread Andrey
https://bugs.kde.org/show_bug.cgi?id=423075

--- Comment #4 from Andrey  ---
If it actually doesn't related with the Layout applet itself, maybe we will
keep Bug 418050 open instead? Or any duplicated bug there.

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

[systemsettings] [Bug 433621] No category name over "Appearance" on Manjaro, which looks weird

2021-02-25 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=433621

Nate Graham  changed:

   What|Removed |Added

Summary|[visual] no title on|No category name over
   |appearance  |"Appearance" on Manjaro,
   ||which looks weird

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

[systemsettings] [Bug 433620] plasma-firewall not giving admin popup

2021-02-25 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=433620

Nate Graham  changed:

   What|Removed |Added

 CC||n...@kde.org

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

[kwin] [Bug 433589] Kwin crash with libepoxy since Plasma 5.21.0

2021-02-25 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=433589

Nate Graham  changed:

   What|Removed |Added

 CC||n...@kde.org

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

[systemsettings] [Bug 433621] [visual] no title on appearance

2021-02-25 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=433621

Nate Graham  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|REPORTED|CONFIRMED
 CC||n...@kde.org,
   ||plasma-b...@kde.org
  Component|general |sidebarview
   Severity|minor   |normal
   Assignee|plasma-b...@kde.org |notm...@gmail.com

--- Comment #1 from Nate Graham  ---
No functional effect, but quite ugly in Manjaro.

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

[frameworks-kwayland] [Bug 410658] [Wayland] Konsole crashed on close after I hover over the menu bar

2021-02-25 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=410658

Nate Graham  changed:

   What|Removed |Added

   See Also||https://bugs.kde.org/show_b
   ||ug.cgi?id=402389

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

[kdevelop] [Bug 402389] [Wayland] Crash when using "Close all" on viewers [crash in wl_proxy_marshal_array_constructor_versioned]

2021-02-25 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=402389

Nate Graham  changed:

   What|Removed |Added

   See Also||https://bugs.kde.org/show_b
   ||ug.cgi?id=410658

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

[kdevelop] [Bug 402389] [Wayland] Crash when using "Close all" on viewers [crash in wl_proxy_marshal_array_constructor_versioned]

2021-02-25 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=402389

Nate Graham  changed:

   What|Removed |Added

 CC||n...@kde.org

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

[plasmashell] [Bug 409021] Segmentation faults of plasmashell in wl_proxy_set_queue in libwayland-client in Plasma on Wayland

2021-02-25 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=409021

Nate Graham  changed:

   What|Removed |Added

  Component|generic-wayland |generic-crash
   Keywords||wayland

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

[krita] [Bug 424319] Modifier shortcut keys stop working

2021-02-25 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=424319

--- Comment #42 from tomtomtomreportin...@gmail.com ---
Everything seems to work fine now, from what I can tell.

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

[Falkon] [Bug 410290] Segmentation faults in qGetPtrHelper in at qobject.h:121 in qt5-qtbase-5.12.4 when closing falkon involving not saving history and showing the menu bar

2021-02-25 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=410290

Nate Graham  changed:

   What|Removed |Added

 CC||n...@kde.org
 Status|REPORTED|RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #2 from Nate Graham  ---


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

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

[plasmashell] [Bug 409021] Segmentation faults of plasmashell in wl_proxy_set_queue in libwayland-client in Plasma on Wayland

2021-02-25 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=409021

--- Comment #13 from Nate Graham  ---
*** Bug 410290 has been marked as a duplicate of this bug. ***

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

[plasmashell] [Bug 415080] Plasma crash in kquickcontrolsaddons::PlotSGNode::bind() when using nm-widget to connect to VPN

2021-02-25 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=415080

Nate Graham  changed:

   What|Removed |Added

   Version Fixed In||5.20

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

[plasmashell] [Bug 415080] Plasma crash in kquickcontrolsaddons::PlotSGNode::bind() when using nm-widget to connect to VPN

2021-02-25 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=415080

Nate Graham  changed:

   What|Removed |Added

 CC||ardianfit...@gmail.com

--- Comment #22 from Nate Graham  ---
*** Bug 428751 has been marked as a duplicate of this bug. ***

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

[plasmashell] [Bug 428751] KDE Plasma Crash Everytime I tried to Connect with Wifi

2021-02-25 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=428751

Nate Graham  changed:

   What|Removed |Added

 CC||n...@kde.org

--- Comment #2 from Nate Graham  ---


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

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

[plasmashell] [Bug 415080] Plasma crash in kquickcontrolsaddons::PlotSGNode::bind() when using nm-widget to connect to VPN

2021-02-25 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=415080

Nate Graham  changed:

   What|Removed |Added

 CC||willyant...@protonmail.com

--- Comment #21 from Nate Graham  ---
*** Bug 427631 has been marked as a duplicate of this bug. ***

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

[plasmashell] [Bug 427631] Plasma crashed when trying to connect to vpn

2021-02-25 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=427631

Nate Graham  changed:

   What|Removed |Added

 CC||n...@kde.org

--- Comment #2 from Nate Graham  ---


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

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

[plasmashell] [Bug 415080] Plasma crash in kquickcontrolsaddons::PlotSGNode::bind() when using nm-widget to connect to VPN

2021-02-25 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=415080

Nate Graham  changed:

   What|Removed |Added

 CC||apatr...@gmail.com

--- Comment #20 from Nate Graham  ---
*** Bug 426533 has been marked as a duplicate of this bug. ***

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

[frameworks-kdeclarative] [Bug 426533] Crash in plotter

2021-02-25 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=426533

Nate Graham  changed:

   What|Removed |Added

 CC||n...@kde.org

--- Comment #2 from Nate Graham  ---


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

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

[plasmashell] [Bug 415080] Plasma crash in kquickcontrolsaddons::PlotSGNode::bind() when using nm-widget to connect to VPN

2021-02-25 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=415080

Nate Graham  changed:

   What|Removed |Added

 CC||nailspah...@gmail.com

--- Comment #19 from Nate Graham  ---
*** Bug 425839 has been marked as a duplicate of this bug. ***

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

[plasmashell] [Bug 425839] KDE Plazma OpenSuse Tumbleweed Wifi Connection changing

2021-02-25 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=425839

Nate Graham  changed:

   What|Removed |Added

 CC||n...@kde.org

--- Comment #2 from Nate Graham  ---


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

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

[plasmashell] [Bug 415080] Plasma crash in kquickcontrolsaddons::PlotSGNode::bind() when using nm-widget to connect to VPN

2021-02-25 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=415080

Nate Graham  changed:

   What|Removed |Added

 CC||ssstyl...@live.com

--- Comment #18 from Nate Graham  ---
*** Bug 425084 has been marked as a duplicate of this bug. ***

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

[frameworks-kdeclarative] [Bug 425084] Plasma crash on KDE Neon (

2021-02-25 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=425084

Nate Graham  changed:

   What|Removed |Added

 CC||n...@kde.org

--- Comment #3 from Nate Graham  ---


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

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

[plasmashell] [Bug 415080] Plasma crash in kquickcontrolsaddons::PlotSGNode::bind() when using nm-widget to connect to VPN

2021-02-25 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=415080

Nate Graham  changed:

   What|Removed |Added

 CC||tonytony+...@gmail.com

--- Comment #16 from Nate Graham  ---
*** Bug 421907 has been marked as a duplicate of this bug. ***

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

[plasmashell] [Bug 423983] Plasma crashed after disconnecting wifi

2021-02-25 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=423983

Nate Graham  changed:

   What|Removed |Added

 CC||n...@kde.org

--- Comment #2 from Nate Graham  ---


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

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

[plasmashell] [Bug 415080] Plasma crash in kquickcontrolsaddons::PlotSGNode::bind() when using nm-widget to connect to VPN

2021-02-25 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=415080

Nate Graham  changed:

   What|Removed |Added

 CC||slamet.ba...@gmail.com

--- Comment #17 from Nate Graham  ---
*** Bug 423983 has been marked as a duplicate of this bug. ***

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

[plasmashell] [Bug 417600] Blank desktop on initial login

2021-02-25 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=417600

Nate Graham  changed:

   What|Removed |Added

 CC||n...@kde.org

--- Comment #2 from Nate Graham  ---


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

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

[plasmashell] [Bug 421907] segfault when trying to switch wifi ssid

2021-02-25 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=421907

Nate Graham  changed:

   What|Removed |Added

 CC||n...@kde.org

--- Comment #2 from Nate Graham  ---


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

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

[plasmashell] [Bug 415080] Plasma crash in kquickcontrolsaddons::PlotSGNode::bind() when using nm-widget to connect to VPN

2021-02-25 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=415080

Nate Graham  changed:

   What|Removed |Added

 CC||wilson_tyle...@yahoo.com

--- Comment #15 from Nate Graham  ---
*** Bug 417600 has been marked as a duplicate of this bug. ***

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

[plasmashell] [Bug 416192] Crash in plotter

2021-02-25 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=416192

Nate Graham  changed:

   What|Removed |Added

 CC||n...@kde.org

--- Comment #3 from Nate Graham  ---


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

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

[plasmashell] [Bug 415080] Plasma crash in kquickcontrolsaddons::PlotSGNode::bind() when using nm-widget to connect to VPN

2021-02-25 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=415080

Nate Graham  changed:

   What|Removed |Added

 CC||gens...@disroot.org

--- Comment #14 from Nate Graham  ---
*** Bug 416192 has been marked as a duplicate of this bug. ***

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

[plasmashell] [Bug 422764] plasma crashed when switching to another wifi network

2021-02-25 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=422764

Nate Graham  changed:

   What|Removed |Added

 CC||n...@kde.org

--- Comment #5 from Nate Graham  ---


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

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

[plasmashell] [Bug 415080] Plasma crash in kquickcontrolsaddons::PlotSGNode::bind() when using nm-widget to connect to VPN

2021-02-25 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=415080

Nate Graham  changed:

   What|Removed |Added

 CC||aarsalankhalid...@gmail.com

--- Comment #13 from Nate Graham  ---
*** Bug 422764 has been marked as a duplicate of this bug. ***

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

[plasmashell] [Bug 415080] Plasma crash in kquickcontrolsaddons::PlotSGNode::bind() when using nm-widget to connect to VPN

2021-02-25 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=415080

Nate Graham  changed:

   What|Removed |Added

 CC||cd990...@gmail.com

--- Comment #12 from Nate Graham  ---
*** Bug 411699 has been marked as a duplicate of this bug. ***

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

[plasmashell] [Bug 411699] Plasmashell crashes when changing wifi

2021-02-25 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=411699

Nate Graham  changed:

   What|Removed |Added

 CC||n...@kde.org

--- Comment #5 from Nate Graham  ---


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

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

[plasmashell] [Bug 415080] Plasma crash in kquickcontrolsaddons::PlotSGNode::bind() when using nm-widget to connect to VPN

2021-02-25 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=415080

Nate Graham  changed:

   What|Removed |Added

 CC||dien...@winterit.de

--- Comment #11 from Nate Graham  ---
*** Bug 416249 has been marked as a duplicate of this bug. ***

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

[plasmashell] [Bug 416249] Crash after browsing mini programs

2021-02-25 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=416249

Nate Graham  changed:

   What|Removed |Added

 CC||n...@kde.org

--- Comment #2 from Nate Graham  ---


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

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

[plasmashell] [Bug 415080] Plasma crash in kquickcontrolsaddons::PlotSGNode::bind() when using nm-widget to connect to VPN

2021-02-25 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=415080

Nate Graham  changed:

   What|Removed |Added

 CC||chris.l...@caci.com

--- Comment #10 from Nate Graham  ---
*** Bug 416871 has been marked as a duplicate of this bug. ***

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

  1   2   3   4   5   6   >