[konversation] [Bug 401418] New: Login before auto-join channels with +r
https://bugs.kde.org/show_bug.cgi?id=401418 Bug ID: 401418 Summary: Login before auto-join channels with +r Product: konversation Version: 1.7.5 Platform: Other OS: Linux Status: REPORTED Severity: normal Priority: NOR Component: general Assignee: konversation-de...@kde.org Reporter: i...@guoyunhe.me Target Milestone: --- SUMMARY Some channels on Freenode have been set to +r, which means only logged in users can join the channel. Konversation's auto-join channel will fail on these channels. STEPS TO REPRODUCE 1. Open Konversation. 2. Create a Freenode identity with a registered nick name. 3. Join #opensuse and set auto-join. 4. Restart Konversation. OBSERVED RESULT Auto join #opensuse failed, because joining channels happens before login. EXPECTED RESULT Auto join #opensuse works and joining channels happens after login. SOFTWARE/OS VERSIONS Windows: MacOS: Linux/KDE Plasma: openSUSE Tumbleweed (available in About System) KDE Plasma Version: 5.14.3 KDE Frameworks Version: 5.52.0 Qt Version: 5.11.2 ADDITIONAL INFORMATION [10:09] [通知] -freenode-connect- Due to the persistent ongoing spam, all new connections are being set +R (block messages from unidentified users) and will be scanned for vulnerabilities. This will not harm your computer, and vulnerable hosts will be notified. [10:09] [CTCP] 收到来自 freenode-connect 的版本请求。 [10:09] [通知] -NickServ- This nickname is registered. Please choose a different nickname, or identify via /msg NickServ identify . [10:09] [频道] Cannot join channel (+r) - you need to be identified with services - see https://freenode.net/kb/answer/registration [10:09] [频道] Cannot join channel (+r) - you need to be identified with services - see https://freenode.net/kb/answer/registration [10:09] [频道] Cannot join channel (+r) - you need to be identified with services - see https://freenode.net/kb/answer/registration [10:09] [通知] -NickServ- You are now identified for guoyunhe. -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 401410] KWin constantly restarts
https://bugs.kde.org/show_bug.cgi?id=401410 Vlad Zagorodniy changed: What|Removed |Added Resolution|--- |DUPLICATE Status|REOPENED|RESOLVED --- Comment #6 from Vlad Zagorodniy --- Please don't reopen a bug report when it was marked as "RESOLVED". As Martin said in 385324, you need to report to your driver vendor that the driver triggers the graphics reset. *** This bug has been marked as a duplicate of bug 385324 *** -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 385324] kwin: Desktop effects were restarted due to a graphics reset
https://bugs.kde.org/show_bug.cgi?id=385324 --- Comment #18 from Vlad Zagorodniy --- *** Bug 401410 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 399836] kwin crash on changing virtual desktop
https://bugs.kde.org/show_bug.cgi?id=399836 Vlad Zagorodniy changed: What|Removed |Added Resolution|--- |WAITINGFORINFO Status|REPORTED|NEEDSINFO --- Comment #2 from Vlad Zagorodniy --- Unfortunately the backtrace lacks debug symbols. Could you please install debug packages and submit a new backtrace? -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 392412] KWin crash when KWin script handler for clientRemoved
https://bugs.kde.org/show_bug.cgi?id=392412 --- Comment #6 from Vlad Zagorodniy --- Git commit 8af6d4f5dc74385a9d52820562162dc190f452ff by Vlad Zagorodniy. Committed on 26/11/2018 at 08:50. Pushed by vladz into branch 'master'. [x11] Emit clientRemoved after client was removed Summary: Currently, there is a guarantee that a client, which is about to be removed, is no longer in the stacking order(both in constrained and unconstrained) when Workspace::removeClient is called. However, because the client gets removed from m_allClients after clientRemoved is emitted, it can be re-inserted back into the stacking order. In general, the pattern is to do some work and then notify others about what you've done by emitting a signal. In the case of Workspace::removeClient, we emit clientRemoved way before the client actually gets removed. Related: bug 400854 Test Plan: * Enable the following script: ```lang=js workspace.clientAdded.connect(function (client) { if (client.skipTaskbar || client.modal || client.transient) { return; } workspace.desktops = workspace.desktops + 1; workspace.currentDesktop = workspace.desktops; client.desktop = workspace.currentDesktop; }); workspace.clientRemoved.connect(function (client) { if (client.skipTaskbar || client.modal || client.transient) { return; } workspace.desktops = workspace.desktops - 1; }); ``` * Open an app, close the app. Reviewers: #kwin, graesslin Reviewed By: #kwin, graesslin Subscribers: graesslin, kwin Tags: #kwin Differential Revision: https://phabricator.kde.org/D17069 M +2-2workspace.cpp https://commits.kde.org/kwin/8af6d4f5dc74385a9d52820562162dc190f452ff -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 400854] kwin crash when restarting IntelliJ application
https://bugs.kde.org/show_bug.cgi?id=400854 --- Comment #5 from Vlad Zagorodniy --- Git commit 8af6d4f5dc74385a9d52820562162dc190f452ff by Vlad Zagorodniy. Committed on 26/11/2018 at 08:50. Pushed by vladz into branch 'master'. [x11] Emit clientRemoved after client was removed Summary: Currently, there is a guarantee that a client, which is about to be removed, is no longer in the stacking order(both in constrained and unconstrained) when Workspace::removeClient is called. However, because the client gets removed from m_allClients after clientRemoved is emitted, it can be re-inserted back into the stacking order. In general, the pattern is to do some work and then notify others about what you've done by emitting a signal. In the case of Workspace::removeClient, we emit clientRemoved way before the client actually gets removed. Related: bug 392412 Test Plan: * Enable the following script: ```lang=js workspace.clientAdded.connect(function (client) { if (client.skipTaskbar || client.modal || client.transient) { return; } workspace.desktops = workspace.desktops + 1; workspace.currentDesktop = workspace.desktops; client.desktop = workspace.currentDesktop; }); workspace.clientRemoved.connect(function (client) { if (client.skipTaskbar || client.modal || client.transient) { return; } workspace.desktops = workspace.desktops - 1; }); ``` * Open an app, close the app. Reviewers: #kwin, graesslin Reviewed By: #kwin, graesslin Subscribers: graesslin, kwin Tags: #kwin Differential Revision: https://phabricator.kde.org/D17069 M +2-2workspace.cpp https://commits.kde.org/kwin/8af6d4f5dc74385a9d52820562162dc190f452ff -- You are receiving this mail because: You are watching all bug changes.
[plasmashell] [Bug 399143] widgets/lineedit displays no text
https://bugs.kde.org/show_bug.cgi?id=399143 --- Comment #17 from Serge Volkov --- I do not use anything. I do not develop any software. Now I write as a simple user of plasma5. I just use the VESA driver in the xorg. In the VESA driver there is no support for opengl. I think this is related to this. -- You are receiving this mail because: You are watching all bug changes.
[plasmashell] [Bug 401342] Long plasmoid names and/or descriptions are truncated
https://bugs.kde.org/show_bug.cgi?id=401342 Kai Uwe Broulik changed: What|Removed |Added CC||k...@privat.broulik.de --- Comment #3 from Kai Uwe Broulik --- I was never a fan of the two-column widget explorer, it just doesn't work in German. Perhaps we should revisit the design and opt for a wider delegate again like we used to have. -- You are receiving this mail because: You are watching all bug changes.
[kmymoney] [Bug 380286] Exported account templates only includes incomplete tax information
https://bugs.kde.org/show_bug.cgi?id=380286 --- Comment #17 from Ralf Habacker --- Git commit a7683b5440c7956084e96e62ae4e07bf5dfc3296 by Ralf Habacker. Committed on 26/11/2018 at 08:56. Pushed by habacker into branch '5.0'. Save account attribute 'Include in tax report' when exporting account structure to KMymoney template file Reviewed By: tbaumgart Differential Revision: https://phabricator.kde.org/D16727 M +6-1kmymoney/converter/mymoneytemplate.cpp https://commits.kde.org/kmymoney/a7683b5440c7956084e96e62ae4e07bf5dfc3296 --- Comment #16 from Ralf Habacker --- Git commit 757f42ff80a787550392192226287ec79c515459 by Ralf Habacker. Committed on 26/11/2018 at 08:47. Pushed by habacker into branch '5.0'. Export account attribute 'VatRate' into a template file and read out again when importing Reviewed By: tbaumgart Differential Revision: https://phabricator.kde.org/D16725 M +9-1kmymoney/converter/mymoneytemplate.cpp https://commits.kde.org/kmymoney/757f42ff80a787550392192226287ec79c515459 --- Comment #15 from Ralf Habacker --- Git commit 4735e228ae9ac31fc51d353007aad65d2c6e4e38 by Ralf Habacker. Committed on 26/11/2018 at 08:55. Pushed by habacker into branch '5.0'. Add support for saving and loading tax account mappings to and from a template file A tax account mapping is stored in an xml tag of type 'flag' with the attribute name='VatAccount'. The attribute 'value' contains a reference to the corresponding tax account, which contains the reference in the attribute 'id'. When importing a template file with a tax account assignment, the reference is first stored in a temporary key/value pair with the name 'UnresolvedVatAccount' of the account concerned and after completion of the load is stored in the key/value pair 'VatAccount' based on the ID of the tax account now available. Reviewed By: tbaumgart Differential Revision: https://phabricator.kde.org/D16726 M +49 -1kmymoney/converter/mymoneytemplate.cpp M +1-0kmymoney/converter/mymoneytemplate.h https://commits.kde.org/kmymoney/4735e228ae9ac31fc51d353007aad65d2c6e4e38 -- You are receiving this mail because: You are watching all bug changes.
[kmymoney] [Bug 380286] Exported account templates only includes incomplete tax information
https://bugs.kde.org/show_bug.cgi?id=380286 --- Comment #17 from Ralf Habacker --- Git commit a7683b5440c7956084e96e62ae4e07bf5dfc3296 by Ralf Habacker. Committed on 26/11/2018 at 08:56. Pushed by habacker into branch '5.0'. Save account attribute 'Include in tax report' when exporting account structure to KMymoney template file Reviewed By: tbaumgart Differential Revision: https://phabricator.kde.org/D16727 M +6-1kmymoney/converter/mymoneytemplate.cpp https://commits.kde.org/kmymoney/a7683b5440c7956084e96e62ae4e07bf5dfc3296 --- Comment #16 from Ralf Habacker --- Git commit 757f42ff80a787550392192226287ec79c515459 by Ralf Habacker. Committed on 26/11/2018 at 08:47. Pushed by habacker into branch '5.0'. Export account attribute 'VatRate' into a template file and read out again when importing Reviewed By: tbaumgart Differential Revision: https://phabricator.kde.org/D16725 M +9-1kmymoney/converter/mymoneytemplate.cpp https://commits.kde.org/kmymoney/757f42ff80a787550392192226287ec79c515459 --- Comment #15 from Ralf Habacker --- Git commit 4735e228ae9ac31fc51d353007aad65d2c6e4e38 by Ralf Habacker. Committed on 26/11/2018 at 08:55. Pushed by habacker into branch '5.0'. Add support for saving and loading tax account mappings to and from a template file A tax account mapping is stored in an xml tag of type 'flag' with the attribute name='VatAccount'. The attribute 'value' contains a reference to the corresponding tax account, which contains the reference in the attribute 'id'. When importing a template file with a tax account assignment, the reference is first stored in a temporary key/value pair with the name 'UnresolvedVatAccount' of the account concerned and after completion of the load is stored in the key/value pair 'VatAccount' based on the ID of the tax account now available. Reviewed By: tbaumgart Differential Revision: https://phabricator.kde.org/D16726 M +49 -1kmymoney/converter/mymoneytemplate.cpp M +1-0kmymoney/converter/mymoneytemplate.h https://commits.kde.org/kmymoney/4735e228ae9ac31fc51d353007aad65d2c6e4e38 -- You are receiving this mail because: You are watching all bug changes.
[kmymoney] [Bug 380286] Exported account templates only includes incomplete tax information
https://bugs.kde.org/show_bug.cgi?id=380286 --- Comment #17 from Ralf Habacker --- Git commit a7683b5440c7956084e96e62ae4e07bf5dfc3296 by Ralf Habacker. Committed on 26/11/2018 at 08:56. Pushed by habacker into branch '5.0'. Save account attribute 'Include in tax report' when exporting account structure to KMymoney template file Reviewed By: tbaumgart Differential Revision: https://phabricator.kde.org/D16727 M +6-1kmymoney/converter/mymoneytemplate.cpp https://commits.kde.org/kmymoney/a7683b5440c7956084e96e62ae4e07bf5dfc3296 --- Comment #16 from Ralf Habacker --- Git commit 757f42ff80a787550392192226287ec79c515459 by Ralf Habacker. Committed on 26/11/2018 at 08:47. Pushed by habacker into branch '5.0'. Export account attribute 'VatRate' into a template file and read out again when importing Reviewed By: tbaumgart Differential Revision: https://phabricator.kde.org/D16725 M +9-1kmymoney/converter/mymoneytemplate.cpp https://commits.kde.org/kmymoney/757f42ff80a787550392192226287ec79c515459 --- Comment #15 from Ralf Habacker --- Git commit 4735e228ae9ac31fc51d353007aad65d2c6e4e38 by Ralf Habacker. Committed on 26/11/2018 at 08:55. Pushed by habacker into branch '5.0'. Add support for saving and loading tax account mappings to and from a template file A tax account mapping is stored in an xml tag of type 'flag' with the attribute name='VatAccount'. The attribute 'value' contains a reference to the corresponding tax account, which contains the reference in the attribute 'id'. When importing a template file with a tax account assignment, the reference is first stored in a temporary key/value pair with the name 'UnresolvedVatAccount' of the account concerned and after completion of the load is stored in the key/value pair 'VatAccount' based on the ID of the tax account now available. Reviewed By: tbaumgart Differential Revision: https://phabricator.kde.org/D16726 M +49 -1kmymoney/converter/mymoneytemplate.cpp M +1-0kmymoney/converter/mymoneytemplate.h https://commits.kde.org/kmymoney/4735e228ae9ac31fc51d353007aad65d2c6e4e38 -- You are receiving this mail because: You are watching all bug changes.
[kontact] [Bug 401419] New: Kontact crashed on trying to open an unread email
https://bugs.kde.org/show_bug.cgi?id=401419 Bug ID: 401419 Summary: Kontact crashed on trying to open an unread email Product: kontact Version: unspecified Platform: openSUSE RPMs OS: Linux Status: REPORTED Keywords: drkonqi Severity: crash Priority: NOR Component: general Assignee: kdepim-b...@kde.org Reporter: robby.engelm...@igfs-ev.de Target Milestone: --- Application: kontact (5.9.80 beta) Qt Version: 5.11.2 Frameworks Version: 5.52.0 Operating System: Linux 4.19.2-1-default x86_64 Distribution: "openSUSE Tumbleweed" -- Information about the crash: - What I was doing when the application crashed: Kontact crashed on trying to open an unread email. Not yet sure, whether this happens for every mail. The crash can be reproduced sometimes. -- Backtrace: Application: Kontact (kontact), signal: Segmentation fault Using host libthread_db library "/lib64/libthread_db.so.1". [Current thread is 1 (Thread 0x7fd75d34fa40 (LWP 14644))] Thread 38 (Thread 0x7fd62e95d700 (LWP 14765)): #0 0x7fd770a98d34 in read () from /lib64/libc.so.6 #1 0x7fd76e509a00 in ?? () from /usr/lib64/libglib-2.0.so.0 #2 0x7fd76e4c3a4b in g_main_context_check () from /usr/lib64/libglib-2.0.so.0 #3 0x7fd76e4c3ef0 in ?? () from /usr/lib64/libglib-2.0.so.0 #4 0x7fd76e4c406c in g_main_context_iteration () from /usr/lib64/libglib-2.0.so.0 #5 0x7fd7711c2adb in QEventDispatcherGlib::processEvents (this=0x7fd6e4005070, flags=...) at kernel/qeventdispatcher_glib.cpp:424 #6 0x7fd77116fadb in QEventLoop::exec (this=this@entry=0x7fd62e95cb60, flags=..., flags@entry=...) at ../../include/QtCore/../../src/corelib/global/qflags.h:140 #7 0x7fd770fbede6 in QThread::exec (this=) at ../../include/QtCore/../../src/corelib/global/qflags.h:120 #8 0x7fd770fc89b7 in QThreadPrivate::start (arg=0x55a220a8b1f0) at thread/qthread_unix.cpp:367 #9 0x7fd76f6f9554 in start_thread () from /lib64/libpthread.so.0 #10 0x7fd770aa7ccf in clone () from /lib64/libc.so.6 Thread 37 (Thread 0x7fd635884700 (LWP 14745)): #0 0x7fd76f6ff8c8 in pthread_cond_timedwait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0 #1 0x7fd768941d37 in ?? () from /usr/lib64/libQt5WebEngineCore.so.5 #2 0x7fd768943a0a in ?? () from /usr/lib64/libQt5WebEngineCore.so.5 #3 0x7fd768943af2 in ?? () from /usr/lib64/libQt5WebEngineCore.so.5 #4 0x7fd7689488b1 in ?? () from /usr/lib64/libQt5WebEngineCore.so.5 #5 0x7fd768949d91 in ?? () from /usr/lib64/libQt5WebEngineCore.so.5 #6 0x7fd7689541c1 in ?? () from /usr/lib64/libQt5WebEngineCore.so.5 #7 0x7fd76f6f9554 in start_thread () from /lib64/libpthread.so.0 #8 0x7fd770aa7ccf in clone () from /lib64/libc.so.6 Thread 36 (Thread 0x7fd636085700 (LWP 14744)): #0 0x7fd76f6ff8c8 in pthread_cond_timedwait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0 #1 0x7fd768941d37 in ?? () from /usr/lib64/libQt5WebEngineCore.so.5 #2 0x7fd768943a0a in ?? () from /usr/lib64/libQt5WebEngineCore.so.5 #3 0x7fd768943af2 in ?? () from /usr/lib64/libQt5WebEngineCore.so.5 #4 0x7fd7689488b1 in ?? () from /usr/lib64/libQt5WebEngineCore.so.5 #5 0x7fd768949baf in ?? () from /usr/lib64/libQt5WebEngineCore.so.5 #6 0x7fd7689541c1 in ?? () from /usr/lib64/libQt5WebEngineCore.so.5 #7 0x7fd76f6f9554 in start_thread () from /lib64/libpthread.so.0 #8 0x7fd770aa7ccf in clone () from /lib64/libc.so.6 Thread 35 (Thread 0x7fd636886700 (LWP 14743)): #0 0x7fd76f6ff8c8 in pthread_cond_timedwait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0 #1 0x7fd768941d37 in ?? () from /usr/lib64/libQt5WebEngineCore.so.5 #2 0x7fd768943a0a in ?? () from /usr/lib64/libQt5WebEngineCore.so.5 #3 0x7fd768943af2 in ?? () from /usr/lib64/libQt5WebEngineCore.so.5 #4 0x7fd7689488b1 in ?? () from /usr/lib64/libQt5WebEngineCore.so.5 #5 0x7fd768949d91 in ?? () from /usr/lib64/libQt5WebEngineCore.so.5 #6 0x7fd7689541c1 in ?? () from /usr/lib64/libQt5WebEngineCore.so.5 #7 0x7fd76f6f9554 in start_thread () from /lib64/libpthread.so.0 #8 0x7fd770aa7ccf in clone () from /lib64/libc.so.6 Thread 34 (Thread 0x7fd6377fe700 (LWP 14723)): #0 0x7fd76e4c349d in g_main_context_prepare () from /usr/lib64/libglib-2.0.so.0 #1 0x7fd76e4c3e7b in ?? () from /usr/lib64/libglib-2.0.so.0 #2 0x7fd76e4c406c in g_main_context_iteration () from /usr/lib64/libglib-2.0.so.0 #3 0x7fd7711c2adb in QEventDispatcherGlib::processEvents (this=0x7fd644001ee0, flags=...) at kernel/qeventdispatcher_glib.cpp:424 #4 0x7fd77116fadb in QEventLoop::exec (this=this@entry=0x7fd6377fdb60, flags=..., flags@entry=...) at ../../include/QtCore/../../src/corelib/global/qflags.h:140 #5 0x7fd770fbede6 in QThread::exec (this=) at ../../include/QtCore/../../src/corelib/global/qflags.h:120 #6 0x7fd770fc89b7 in QThreadPrivate::start (arg
[kdevelop] [Bug 400769] Crash and unusual behavior after upgrading KDevelop to 5.3.0 [crash in Clazy::JobParameters::JobParameters]
https://bugs.kde.org/show_bug.cgi?id=400769 Kevin Funk changed: What|Removed |Added Summary|Crash and unusual behavior |Crash and unusual behavior |after upgrading KDevelop to |after upgrading KDevelop to |5.3.0 |5.3.0 [crash in ||Clazy::JobParameters::JobPa ||rameters] -- You are receiving this mail because: You are watching all bug changes.
[kdevelop] [Bug 400769] Crash and unusual behavior after upgrading KDevelop to 5.3.0
https://bugs.kde.org/show_bug.cgi?id=400769 --- Comment #9 from Kevin Funk --- Pasting backtrace inline for better SEO: Thread 1 (Thread 0x7f36bdc02bc0 (LWP 2277)): [KCrash Handler] #6 0x7f366a59475f in Clazy::JobParameters::JobParameters(KDevelop::IProject*, QString const&) (this=0x564588788b50, project=0x564587df0ce0, checkPath=...) at ./plugins/clazy/jobparameters.cpp:146 #7 0x7f366a595157 in Clazy::JobParameters::JobParameters(KDevelop::IProject*) (this=, project=) at ./plugins/clazy/jobparameters.cpp:135 #8 0x7f366a58491f in Clazy::ProjectConfigPage::ProjectConfigPage(Clazy::Plugin*, KDevelop::IProject*, QWidget*) (this=0x564588789380, plugin=0x56458731f300, project=0x564587df0ce0, parent=0x56458833e750) at ./plugins/clazy/config/projectconfigpage.cpp:38 #9 0x7f366a57b0bd in Clazy::Plugin::perProjectConfigPage(int, KDevelop::ProjectConfigOptions const&, QWidget*) (this=0x56458731f300, number=, options=..., parent=0x56458833e750) at ./plugins/clazy/plugin.cpp:272 #10 0x7f36bd767728 in KDevelop::ProjectControllerPrivate::projectConfig(QObject*) (this=, obj=) at ./kdevplatform/shell/projectcontroller.cpp:153 #11 0x7f36bd759aeb in KDevelop::ProjectControllerPrivate::openProjectConfig() (this=0x56458718e370) at ./kdevplatform/shell/projectcontroller.cpp:270 #12 0x7f36bd759aeb in KDevelop::ProjectControlleroperator() (__closure=) at ./kdevplatform/shell/projectcontroller.cpp:590 #13 0x7f36bd759aeb in QtPrivate::FunctorCall, QtPrivate::List<>, void, KDevelop::ProjectController::setupActions():: >::call (arg=, f=...) at /usr/include/x86_64-linux-gnu/qt5/QtCore/qobjectdefs_impl.h:128 #14 0x7f36bd759aeb in QtPrivate::Functor, 0>::call, void> (arg=, f=...) at /usr/include/x86_64-linux-gnu/qt5/QtCore/qobjectdefs_impl.h:238 #15 0x7f36bd759aeb in QtPrivate::QFunctorSlotObject, 0, QtPrivate::List<>, void>::impl(int, QtPrivate::QSlotObjectBase *, QObject *, void **, bool *) (which=, this_=, r=, a=, ret=) at /usr/include/x86_64-linux-gnu/qt5/QtCore/qobjectdefs_impl.h:421 #16 0x7f36bab7018f in QMetaObject::activate(QObject*, int, int, void**) () at /usr/lib/x86_64-linux-gnu/libQt5Core.so.5 #17 0x7f36bc0036b2 in QAction::triggered(bool) () at /usr/lib/x86_64-linux-gnu/libQt5Widgets.so.5 #18 0x7f36bc005cec in QAction::activate(QAction::ActionEvent) () at /usr/lib/x86_64-linux-gnu/libQt5Widgets.so.5 #19 0x7f36bab70be2 in QObject::event(QEvent*) () at /usr/lib/x86_64-linux-gnu/libQt5Core.so.5 #20 0x7f36bc006665 in QAction::event(QEvent*) () at /usr/lib/x86_64-linux-gnu/libQt5Widgets.so.5 #21 0x7f36bc009e1c in QApplicationPrivate::notify_helper(QObject*, QEvent*) () at /usr/lib/x86_64-linux-gnu/libQt5Widgets.so.5 #22 0x7f36bc0113ef in QApplication::notify(QObject*, QEvent*) () at /usr/lib/x86_64-linux-gnu/libQt5Widgets.so.5 #23 0x7f36bab40fe8 in QCoreApplication::notifyInternal2(QObject*, QEvent*) () at /usr/lib/x86_64-linux-gnu/libQt5Core.so.5 #24 0x7f36bab43b2d in QCoreApplicationPrivate::sendPostedEvents(QObject*, int, QThreadData*) () at /usr/lib/x86_64-linux-gnu/libQt5Core.so.5 #25 0x7f36bab9b9f3 in () at /usr/lib/x86_64-linux-gnu/libQt5Core.so.5 #26 0x7f36b0ecd287 in g_main_context_dispatch () at /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0 #27 0x7f36b0ecd4c0 in () at /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0 #28 0x7f36b0ecd54c in g_main_context_iteration () at /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0 #29 0x7f36bab9b02f in QEventDispatcherGlib::processEvents(QFlags) () at /usr/lib/x86_64-linux-gnu/libQt5Core.so.5 #30 0x7f368b89a761 in () at /usr/lib/x86_64-linux-gnu/libQt5XcbQpa.so.5 #31 0x7f36bab3f30a in QEventLoop::exec(QFlags) () at /usr/lib/x86_64-linux-gnu/libQt5Core.so.5 #32 0x7f36bab484d0 in QCoreApplication::exec() () at /usr/lib/x86_64-linux-gnu/libQt5Core.so.5 #33 0x564585827190 in main(int, char**) (argc=, argv=) at ./app/main.cpp:849 -- You are receiving this mail because: You are watching all bug changes.
[kdevelop] [Bug 400769] Crash and unusual behavior after upgrading KDevelop to 5.3.0 [crash in Clazy::JobParameters::JobParameters]
https://bugs.kde.org/show_bug.cgi?id=400769 Kevin Funk changed: What|Removed |Added CC||bugtrack...@cdstm.ch --- Comment #10 from Kevin Funk --- *** Bug 401361 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are watching all bug changes.
[kdevelop] [Bug 401361] Access to build settings impossible
https://bugs.kde.org/show_bug.cgi?id=401361 Kevin Funk changed: What|Removed |Added Status|REPORTED|RESOLVED Resolution|--- |DUPLICATE --- Comment #1 from Kevin Funk --- Fixed in 5.3.1 *** This bug has been marked as a duplicate of bug 400769 *** -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 393347] LibreOffice on Wayland has no window decoration
https://bugs.kde.org/show_bug.cgi?id=393347 --- Comment #2 from tro...@free.fr --- This is fixed, by the way. LibreOffice now has proper window decoration. -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 391395] kwin crashes when closing unrelated app
https://bugs.kde.org/show_bug.cgi?id=391395 --- Comment #4 from Vlad Zagorodniy --- Hi! Could you please shed light on several things: Is this happening only when killing the tor browser? How often this happens? Did you find a reliable way to reproduce the crash? -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 394701] KWin crashes when closing a window.
https://bugs.kde.org/show_bug.cgi?id=394701 --- Comment #4 from Vlad Zagorodniy --- > I simply closed a tab on Chromium Is that tab the last one? -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 389201] kwin crashed
https://bugs.kde.org/show_bug.cgi?id=389201 --- Comment #5 from Vlad Zagorodniy --- Hi! How often this happens? Did you find a reliable way to reproduce the crash? -- You are receiving this mail because: You are watching all bug changes.
[kontact] [Bug 401420] New: Crash while Event with invotation
https://bugs.kde.org/show_bug.cgi?id=401420 Bug ID: 401420 Summary: Crash while Event with invotation Product: kontact Version: 5.7.3 Platform: Ubuntu Packages OS: Linux Status: REPORTED Keywords: drkonqi Severity: crash Priority: NOR Component: general Assignee: kdepim-b...@kde.org Reporter: niclas+...@nidomiro.de Target Milestone: --- Application: kontact (5.7.3) Qt Version: 5.9.5 Frameworks Version: 5.44.0 Operating System: Linux 4.15.0-39-generic x86_64 Distribution: Ubuntu 18.04.1 LTS -- Information about the crash: - What I was doing when the application crashed: I was creating a event in my CalDav-calendar (Nextcloud) inviting a mailinglist and just after klicking "ok" on the Event it crashed. -- Backtrace: Application: Kontact (kontact), signal: Segmentation fault Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1". [Current thread is 1 (Thread 0x7fbd78d5bb80 (LWP 10874))] Thread 28 (Thread 0x7fbc138a7700 (LWP 12808)): #0 0x7fbd756ff0b4 in __GI___libc_read (fd=108, buf=0x7fbc138a6810, nbytes=16) at ../sysdeps/unix/sysv/linux/read.c:27 #1 0x7fbd6f453a00 in g_variant_type_new_dict_entry () at /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0 #2 0x in () Thread 27 (Thread 0x7fbc1bfff700 (LWP 10935)): #0 0x7fbd6f454d94 in () at /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0 #1 0x0040 in () #2 0x00010040 in () #3 0x7fff in () #4 0x5a83da1823d0d900 in () #5 0x7fbc14003b74 in () #6 0x7fbc14000d90 in () #7 0x0001 in () #8 0x0004 in () #9 0x7fbc14000cc0 in () #10 0x in () Thread 26 (Thread 0x7fbc20aa8700 (LWP 10931)): #0 0x7fbd714959f3 in futex_wait_cancelable (private=, expected=0, futex_word=0x55a220bcaf58) at ../sysdeps/unix/sysv/linux/futex-internal.h:88 #1 0x7fbd714959f3 in __pthread_cond_wait_common (abstime=0x0, mutex=0x55a220bcaf08, cond=0x55a220bcaf30) at pthread_cond_wait.c:502 #2 0x7fbd714959f3 in __pthread_cond_wait (cond=0x55a220bcaf30, mutex=0x55a220bcaf08) at pthread_cond_wait.c:655 #3 0x7fbd66488c95 in () at /usr/lib/x86_64-linux-gnu/libQt5WebEngineCore.so.5 #4 0x7fbd66489177 in () at /usr/lib/x86_64-linux-gnu/libQt5WebEngineCore.so.5 #5 0x7fbd66489f11 in () at /usr/lib/x86_64-linux-gnu/libQt5WebEngineCore.so.5 #6 0x7fbd664865eb in () at /usr/lib/x86_64-linux-gnu/libQt5WebEngineCore.so.5 #7 0x7fbd7148f6db in start_thread (arg=0x7fbc20aa8700) at pthread_create.c:463 #8 0x7fbd7571088f in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:95 Thread 25 (Thread 0x7fbc2bb41700 (LWP 10916)): #0 0x7fbd714959f3 in futex_wait_cancelable (private=, expected=0, futex_word=0x55a2210544f0) at ../sysdeps/unix/sysv/linux/futex-internal.h:88 #1 0x7fbd714959f3 in __pthread_cond_wait_common (abstime=0x0, mutex=0x55a2210544a0, cond=0x55a2210544c8) at pthread_cond_wait.c:502 #2 0x7fbd714959f3 in __pthread_cond_wait (cond=0x55a2210544c8, mutex=0x55a2210544a0) at pthread_cond_wait.c:655 #3 0x7fbd7603359b in QWaitCondition::wait(QMutex*, unsigned long) () at /usr/lib/x86_64-linux-gnu/libQt5Core.so.5 #4 0x7fbd7602bc0b in QSemaphore::acquire(int) () at /usr/lib/x86_64-linux-gnu/libQt5Core.so.5 #5 0x7fbc30c2980c in () at /usr/lib/x86_64-linux-gnu/qt5/plugins/texttospeech/libqttexttospeech_flite.so #6 0x7fbd7603216d in () at /usr/lib/x86_64-linux-gnu/libQt5Core.so.5 #7 0x7fbd7148f6db in start_thread (arg=0x7fbc2bb41700) at pthread_create.c:463 #8 0x7fbd7571088f in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:95 Thread 24 (Thread 0x7fbc3162e700 (LWP 10913)): #0 0x7fbd6f454d79 in () at /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0 #1 0x7fbd6f40e9a3 in g_main_context_prepare () at /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0 #2 0x7fbd6f40f36b in g_main_context_dispatch () at /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0 #3 0x7fbc2c004370 in () #4 0x0024 in () #5 0x7fbc3162da20 in () #6 0x7fbc2c0043e4 in () #7 0x55a2210069e0 in () #8 0x7ffd376735d0 in () #9 0x7fbd7620e9ea in QEventLoop::exec(QFlags) () at /usr/lib/x86_64-linux-gnu/libQt5Core.so.5 #10 0x7fbd7602d22a in QThread::exec() () at /usr/lib/x86_64-linux-gnu/libQt5Core.so.5 #11 0x7fbd7603216d in () at /usr/lib/x86_64-linux-gnu/libQt5Core.so.5 #12 0x7fbd7148f6db in start_thread (arg=0x7fbc3162e700) at pthread_create.c:463 #13 0x7fbd7571088f in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:95 Thread 23 (Thread 0x7fbc42892700 (LWP 10908)): #0 0x7fbd75703bf9 in __GI___poll (fds=0x7fbc38102b20, nfds=1, timeout=-1) at ../sysdeps/unix/sysv/linux/poll.c:29 #1 0x7fbd6f40f439 in () at /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0 #2 0x7fbd6f40f54c in () at /usr/lib/x86_64-linux-
[plasma-browser-integration] [Bug 398261] Support javascript element on cinemix.radio.net
https://bugs.kde.org/show_bug.cgi?id=398261 Kai Uwe Broulik changed: What|Removed |Added Latest Commit||https://commits.kde.org/pla ||sma-browser-integration/c94 ||7306c0c23a0cf3eff4bb151aefc ||1dacbb1e4b Status|REPORTED|RESOLVED Resolution|--- |FIXED --- Comment #6 from Kai Uwe Broulik --- Git commit c947306c0c23a0cf3eff4bb151aefc1dacbb1e4b by Kai Uwe Broulik. Committed on 26/11/2018 at 09:25. Pushed by broulik into branch 'master'. Also catch new Audio() elements Also catches audio players created using the proper new Audio() syntax rather than explicitly creating a DOM element using document.createElement('audio') Differential Revision: https://phabricator.kde.org/D16435 M +15 -0extension/content-script.js https://commits.kde.org/plasma-browser-integration/c947306c0c23a0cf3eff4bb151aefc1dacbb1e4b -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 400854] kwin crash when restarting IntelliJ application
https://bugs.kde.org/show_bug.cgi?id=400854 --- Comment #6 from Vlad Zagorodniy --- @Marcus Does this happen only when restarting IntelliJ IDEA? -- You are receiving this mail because: You are watching all bug changes.
[konsole] [Bug 401421] New: Unicode symbols right-side cropped in konsole
https://bugs.kde.org/show_bug.cgi?id=401421 Bug ID: 401421 Summary: Unicode symbols right-side cropped in konsole Product: konsole Version: 18.08.3 Platform: Archlinux Packages OS: Linux Status: REPORTED Severity: normal Priority: NOR Component: font Assignee: konsole-de...@kde.org Reporter: p...@kantyka.net Target Milestone: --- Created attachment 116502 --> https://bugs.kde.org/attachment.cgi?id=116502&action=edit Symbols displayed incorrectly SUMMARY Unicode symbols like ➀, ➁, ➂ or nerd-fonts are right-size cropped in konsole. STEPS TO REPRODUCE 1. Display any Unicode symbols (or nerd-fonts) in konsole (symbols like ➀, ➁, ➂) OBSERVED RESULT Symbols are not displayed in-full. They are cropped from the right side. EXPECTED RESULT Symbols are displayed correctly. SOFTWARE/OS VERSIONS Linux/KDE Plasma: 5.14.3 (available in About System) KDE Plasma Version: 5.14.3 KDE Frameworks Version: 5.52.0 Qt Version: 5.11.2 ADDITIONAL INFORMATION Please find 2 attachments enclosed with konsole and qterminal. -- You are receiving this mail because: You are watching all bug changes.
[konsole] [Bug 401421] Unicode symbols right-side cropped in konsole
https://bugs.kde.org/show_bug.cgi?id=401421 --- Comment #1 from Dobrogi --- Created attachment 116503 --> https://bugs.kde.org/attachment.cgi?id=116503&action=edit Symbols displayed correctly (qterminal) -- You are receiving this mail because: You are watching all bug changes.
[neon] [Bug 401057] Password can be accidentally entered and be visible into desktop/text editor
https://bugs.kde.org/show_bug.cgi?id=401057 --- Comment #4 from rugk <7429c...@opayq.com> --- Maybe it is some adjustment by OpenSUSE or so? Don't know whether this is default behavior. I could screencast it, but it is exactly the same behavior as I describe. Just enter your password directly after the screen (automatically) locks. So what exactly cannot you reproduce? Does the "move mouse only seconds after automatic screen lock" not work or what? -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 323621] Wobbly windows should act more like jello on un/maximization
https://bugs.kde.org/show_bug.cgi?id=323621 Vlad Zagorodniy changed: What|Removed |Added Resolution|--- |NOT A BUG Status|REPORTED|RESOLVED --- Comment #1 from Vlad Zagorodniy --- In order to have something like Compiz has/had we'd probably need to re-write the internals of the effect. I doubt that someone would like to do that, so I'm marking as NOT A BUG. Also, I'd like to mention that KWin has support for out-of-source tree binary effects. So, one could implement the Wobbly Windows effect based on libanimation [1]. Something like that https://www.youtube.com/watch?v=Gvr7SPEXHF8 [1] https://github.com/endlessm/libanimation -- You are receiving this mail because: You are watching all bug changes.
[umbrello] [Bug 401290] Regression on import of Java classes with methods using varargs
https://bugs.kde.org/show_bug.cgi?id=401290 --- Comment #7 from Ralf Habacker --- Created attachment 116504 --> https://bugs.kde.org/attachment.cgi?id=116504&action=edit Testcase for checking parameter datatype With the mentioned patch applied, the initial issue showing the 'is already present' dialog is fixed. The appended test case checks the other case, which is having a parameter datatype not being a basic type. Check result: On importing the appended files the dialog box is not shown -- You are receiving this mail because: You are watching all bug changes.
[plasmashell] [Bug 365967] Overlapping icons on the system tray with 3rd-party weather widget
https://bugs.kde.org/show_bug.cgi?id=365967 kaleis...@gmail.com changed: What|Removed |Added CC||kaleis...@gmail.com --- Comment #8 from kaleis...@gmail.com --- Created attachment 116505 --> https://bugs.kde.org/attachment.cgi?id=116505&action=edit Screenshot of systray in vertical panel My systray is garbled too, and I don't use a weather widget. I've added spacers before and after so they won't overlap the other stuff on the panel. If I left-click anywhere in the systray I get the "Status and Notifications"-dialog. If I don't have the spacers above the entire tray goes all the way up and the top part disappears so maybe the cause is it having zero height. Both spacers partially overlap the systray as well. KDE noen 5.14. -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 401422] New: Plasma crash when adding virtual desktop
https://bugs.kde.org/show_bug.cgi?id=401422 Bug ID: 401422 Summary: Plasma crash when adding virtual desktop Product: kwin Version: 5.13.5 Platform: Debian testing OS: Linux Status: REPORTED Keywords: drkonqi Severity: crash Priority: NOR Component: general Assignee: kwin-bugs-n...@kde.org Reporter: marcosa...@gmail.com Target Milestone: --- Application: kwin_x11 (5.13.5) Qt Version: 5.11.2 Frameworks Version: 5.49.0 Operating System: Linux 4.18.0-2-amd64 x86_64 Distribution: Debian GNU/Linux testing (buster) -- Information about the crash: - What I was doing when the application crashed: Adding a virtual desktop through the task switching hot corner, then clicking the add button in the lower right corner. The crash can be reproduced every time. -- Backtrace: Application: KWin (kwin_x11), signal: Segmentation fault Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1". [Current thread is 1 (Thread 0x7f3a85f3b940 (LWP 2145))] Thread 15 (Thread 0x7f3a7d83b700 (LWP 2848)): #0 0x7f3a90bef836 in __GI_ppoll (fds=0x7f3a7d68, nfds=1, timeout=, sigmask=0x0) at ../sysdeps/unix/sysv/linux/ppoll.c:39 #1 0x7f3a8f7e1d11 in qt_safe_poll(pollfd*, unsigned long, timespec const*) () at /lib/x86_64-linux-gnu/libQt5Core.so.5 #2 0x7f3a8f7e3189 in QEventDispatcherUNIX::processEvents(QFlags) () at /lib/x86_64-linux-gnu/libQt5Core.so.5 #3 0x7f3a8f792d0b in QEventLoop::exec(QFlags) () at /lib/x86_64-linux-gnu/libQt5Core.so.5 #4 0x7f3a8f5e20c6 in QThread::exec() () at /lib/x86_64-linux-gnu/libQt5Core.so.5 #5 0x7f3a8dc40385 in () at /lib/x86_64-linux-gnu/libQt5Qml.so.5 #6 0x7f3a8f5ebc97 in () at /lib/x86_64-linux-gnu/libQt5Core.so.5 #7 0x7f3a8e410f2a in start_thread (arg=0x7f3a7d83b700) at pthread_create.c:463 #8 0x7f3a90bf9edf in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:95 Thread 14 (Thread 0x7f3a7fdf9700 (LWP 2847)): #0 0x7f3a90bef836 in __GI_ppoll (fds=0x7f3a74030468, nfds=1, timeout=, sigmask=0x0) at ../sysdeps/unix/sysv/linux/ppoll.c:39 #1 0x7f3a8f7e1d11 in qt_safe_poll(pollfd*, unsigned long, timespec const*) () at /lib/x86_64-linux-gnu/libQt5Core.so.5 #2 0x7f3a8f7e3189 in QEventDispatcherUNIX::processEvents(QFlags) () at /lib/x86_64-linux-gnu/libQt5Core.so.5 #3 0x7f3a8f792d0b in QEventLoop::exec(QFlags) () at /lib/x86_64-linux-gnu/libQt5Core.so.5 #4 0x7f3a8f5e20c6 in QThread::exec() () at /lib/x86_64-linux-gnu/libQt5Core.so.5 #5 0x7f3a8dc40385 in () at /lib/x86_64-linux-gnu/libQt5Qml.so.5 #6 0x7f3a8f5ebc97 in () at /lib/x86_64-linux-gnu/libQt5Core.so.5 #7 0x7f3a8e410f2a in start_thread (arg=0x7f3a7fdf9700) at pthread_create.c:463 #8 0x7f3a90bf9edf in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:95 Thread 13 (Thread 0x7f3a56ffd700 (LWP 2732)): #0 0x7f3a8e416e6c in futex_wait_cancelable (private=, expected=0, futex_word=0x55735e303a4c) at ../sysdeps/unix/sysv/linux/futex-internal.h:88 #1 0x7f3a8e416e6c in __pthread_cond_wait_common (abstime=0x0, mutex=0x55735e3039f8, cond=0x55735e303a20) at pthread_cond_wait.c:502 #2 0x7f3a8e416e6c in __pthread_cond_wait (cond=0x55735e303a20, mutex=0x55735e3039f8) at pthread_cond_wait.c:655 #3 0x7f3a6b60998b in () at /usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so #4 0x7f3a6b6096b7 in () at /usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so #5 0x7f3a8e410f2a in start_thread (arg=0x7f3a56ffd700) at pthread_create.c:463 #6 0x7f3a90bf9edf in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:95 Thread 12 (Thread 0x7f3a567fc700 (LWP 2375)): #0 0x7f3a8e416e6c in futex_wait_cancelable (private=, expected=0, futex_word=0x7f3a8f204fb8) at ../sysdeps/unix/sysv/linux/futex-internal.h:88 #1 0x7f3a8e416e6c in __pthread_cond_wait_common (abstime=0x0, mutex=0x7f3a8f204f68, cond=0x7f3a8f204f90) at pthread_cond_wait.c:502 #2 0x7f3a8e416e6c in __pthread_cond_wait (cond=0x7f3a8f204f90, mutex=0x7f3a8f204f68) at pthread_cond_wait.c:655 #3 0x7f3a8f10de2a in () at /lib/x86_64-linux-gnu/libQt5Script.so.5 #4 0x7f3a8f10de49 in () at /lib/x86_64-linux-gnu/libQt5Script.so.5 #5 0x7f3a8e410f2a in start_thread (arg=0x7f3a567fc700) at pthread_create.c:463 #6 0x7f3a90bf9edf in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:95 Thread 11 (Thread 0x7f3a577fe700 (LWP 2366)): #0 0x7f3a8e416e6c in futex_wait_cancelable (private=, expected=0, futex_word=0x55735dfd9888) at ../sysdeps/unix/sysv/linux/futex-internal.h:88 #1 0x7f3a8e416e6c in __pthread_cond_wait_common (abstime=0x0, mutex=0x55735dfd9838, cond=0x55735dfd9860) at pthread_cond_wait.c:502 #2 0x7f3a8e416e6c in __pthread_cond_wait (cond=0x55735dfd9860, mutex=0x55735dfd9838) at pthread_cond_wait.c:655 #3 0x7f3a6b60998b in () at /usr/lib/x86_64-linux-gnu/dri/radeonsi_dri.so #4 0x7f3a6b60
[kwin] [Bug 362189] a11y: Keyboard (caret) tracking for the Zoom feature
https://bugs.kde.org/show_bug.cgi?id=362189 --- Comment #14 from Vlad Zagorodniy --- (In reply to Martin Flöser from comment #11) > To cut a long story short: I think the time is better invested improving the > infrastructure for a11y than to invest into doing weird things in zoom. Focus tracking in the Zoom effect is currently not working. It would be great either drop it or rebase on libqaccessibilityclient. -- You are receiving this mail because: You are watching all bug changes.
[umbrello] [Bug 401290] Regression on import of Java classes with methods using varargs
https://bugs.kde.org/show_bug.cgi?id=401290 Ralf Habacker changed: What|Removed |Added Status|REPORTED|RESOLVED Latest Commit||https://commits.kde.org/umb ||rello/930ea0c87624cf7ea479c ||fb3e8e47ca9ea86f0f7 Resolution|--- |FIXED Version Fixed In||2.26.90 (KDE Applications ||18.11.90) --- Comment #8 from Ralf Habacker --- Git commit 930ea0c87624cf7ea479cfb3e8e47ca9ea86f0f7 by Ralf Habacker. Committed on 26/11/2018 at 10:28. Pushed by habacker into branch 'Applications/18.12'. JavaImport: Convert Java specific notation '...' into a language independent array definition In JavaImport::fillSource(), replace method vararg notation "..." occurring in the input word by "[]". FIXED-IN:2.26.90 (KDE Applications 18.11.90) Reviewed By: habacker Differential Revision: https://phabricator.kde.org/D17108 M +10 -2umbrello/codeimport/javaimport.cpp https://commits.kde.org/umbrello/930ea0c87624cf7ea479cfb3e8e47ca9ea86f0f7 -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 401422] Plasma crash when adding virtual desktop
https://bugs.kde.org/show_bug.cgi?id=401422 David Edmundson changed: What|Removed |Added Status|REPORTED|NEEDSINFO CC||k...@davidedmundson.co.uk Resolution|--- |BACKTRACE --- Comment #1 from David Edmundson --- Can you get debug symbols for libkwin4_effect_builtins.so.1 please. -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 243757] Desktop cube with floating windows, the windows are drawn in wrong order / depth.
https://bugs.kde.org/show_bug.cgi?id=243757 --- Comment #5 from Vlad Zagorodniy --- We probably need to sort floating windows depending depending on the view angle. -- You are receiving this mail because: You are watching all bug changes.
[plasmashell] [Bug 359870] Sidebar pops up and disappears when activated by Desktop/Activities(?) Tab
https://bugs.kde.org/show_bug.cgi?id=359870 kaleis...@gmail.com changed: What|Removed |Added CC||kaleis...@gmail.com --- Comment #6 from kaleis...@gmail.com --- I have this problem with the widgets sidebar. I use Focus Follows Mouse - Mouse Precedence. The sidebar opens to the right. My panel is on the left. So If I want to add a widget, I need to move my mouse all the way over to the sidebar, and if it passes over anything the sidebar disappears. I've started hiding all icons but depending on how I do it, opening the widget-sidebar also makes all windows visible, so I have to manually minimize/shade all windows in a path over to the sidebar and then gingerly drag the widget I need all the way back. My problem would be solved by any of: * the sidebar opening on the left. * the sidebar not closing automatically. * the sidebar behaving more like a window so I can set window rules on it. -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 399372] Microstuttering in rendering with compositor enabled
https://bugs.kde.org/show_bug.cgi?id=399372 --- Comment #13 from Ambareesh Balaji --- I don't think this is limited to just amdgpu, since I'm running an Intel HD 620 configuration with i965. -- You are receiving this mail because: You are watching all bug changes.
[digikam] [Bug 401423] New: Video sidecar files nor read or written
https://bugs.kde.org/show_bug.cgi?id=401423 Bug ID: 401423 Summary: Video sidecar files nor read or written Product: digikam Version: unspecified Platform: Other OS: Linux Status: REPORTED Severity: normal Priority: NOR Component: Metadata-Sidecar Assignee: digikam-bugs-n...@kde.org Reporter: kristian.hermann.k...@gmail.com Target Milestone: --- Created attachment 116506 --> https://bugs.kde.org/attachment.cgi?id=116506&action=edit A proposed patch that fixes the issue. SUMMARY When a settings are set to: "Read from sidecar files" => true "Write to sidecar only" => true Digikam does not read, or write sidecar files for video items. STEPS TO REPRODUCE 1. Set settings according to above 2. Try to read from or write "Item -> Write Metadata to File" "Item -> Reread Metadata From File OBSERVED RESULT Metadata in sidecar files are not read, nor is sidecar files written for video files. EXPECTED RESULT Metadata should be read and written to sidecar files for video. 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 356225] Panel moves to wrong screen when external monitor is connected
https://bugs.kde.org/show_bug.cgi?id=356225 --- Comment #316 from Gabriele Tozzi --- I've update plasma to 5.13.5 (Kubuntu latest). I can confirm the issue is still present. -- You are receiving this mail because: You are watching all bug changes.
[plasmashell] [Bug 399143] widgets/lineedit displays no text
https://bugs.kde.org/show_bug.cgi?id=399143 --- Comment #18 from Serge Volkov --- (In reply to Gleb Popov from comment #12) > (In reply to Serge Volkov from comment #9) > > > > 1. Add to the top > > import QtQuick.Controls.Styles.Plasma 2.0 as Styles > > 2. Add to the PlasmaComponents.TextField > > Styles.TextFieldStyle { > > renderType: Screen.devicePixelRatio % 1 !== 0 ? Text.QtRendering : > > Text.NativeRendering > > } > > Maybe I did something wrong, but this didn't help me. Characters in > screenlocker's textbox are still invisible. My mistake. Add to the /usr/local/share/plasma/look-and-feel/org.kde.breeze.desktop/contents/lockscreen/MainBlock.qml file: 1. Add to the top import QtQuick.Window 2.2 import QtQuick.Controls.Styles.Plasma 2.0 as Styles 2. Add after PlasmaComponents.TextField { Styles.TextFieldStyle { renderType: Screen.devicePixelRatio % 1 !== 0 ? Text.QtRendering : Text.NativeRendering } And delete Mainblock.qmlc file. -- You are receiving this mail because: You are watching all bug changes.
[kdeconnect] [Bug 392950] Persist pairing with kdeconnect when in sleep mode
https://bugs.kde.org/show_bug.cgi?id=392950 sun...@hotmail.ru changed: What|Removed |Added CC||sun...@hotmail.ru --- Comment #7 from sun...@hotmail.ru --- I have the same problem on different phones. KDE Connect doesn't sustain connection even though in Android settings its listed as an app that doesn't go to sleep AND Wi-Fi is enabled to work even in sleep mode. Repeated with Android 5, 6, 7 and now 8. Version from F-Droid, with no Google Services on the phone. The exact versions don't matter it neve worked for me(sincev first releases) its just now i've found KDE connect to be really useful outside of video remote control. Maybe it has something to do with google services, could KDE Connect work without it because alot of apps can. And its not available for many phones actually. -- You are receiving this mail because: You are watching all bug changes.
[digikam] [Bug 401423] Video sidecar files nor read or written
https://bugs.kde.org/show_bug.cgi?id=401423 caulier.gil...@gmail.com changed: What|Removed |Added CC||caulier.gil...@gmail.com --- Comment #1 from caulier.gil...@gmail.com --- Which digiKam version did you use exactly ? Look in Help/Components Info dialog for details. Gilles Caulier -- You are receiving this mail because: You are watching all bug changes.
[kdeconnect] [Bug 401424] New: Video won't pause on call
https://bugs.kde.org/show_bug.cgi?id=401424 Bug ID: 401424 Summary: Video won't pause on call Product: kdeconnect Version: 1.10 Platform: Other OS: Linux Status: REPORTED Severity: normal Priority: NOR Component: android-application Assignee: albertv...@gmail.com Reporter: sun...@hotmail.ru Target Milestone: --- After KDE Connect updated from 1.8 to 1.10 on both Android 7 and 8 when someone is calling video won't pause. Version from F-Droid, with no Google Services on the phone, videoplayer used is Smplayer. STEPS TO REPRODUCE 1. Start KDE Connect and start watching video 2. Call on this phone 3. Video won't pause 4. Downgrade to 1.8 and repeat steps 1 and 2, video is paused. -- You are receiving this mail because: You are watching all bug changes.
[KScreen] [Bug 401425] New: When laptop screen is closed external screen doesn't show contents of the main one
https://bugs.kde.org/show_bug.cgi?id=401425 Bug ID: 401425 Summary: When laptop screen is closed external screen doesn't show contents of the main one Product: KScreen Version: 5.14.3 Platform: Other OS: Linux Status: REPORTED Severity: normal Priority: NOR Component: common Assignee: se...@kde.org Reporter: sun...@hotmail.ru Target Milestone: --- SUMMARY If i close latop screen when connected to the TV it no longer shows laptop screen on the TV but the extended part only. STEPS TO REPRODUCE 1. Connect TV/Monitor to laptop via DP -> HDMI (in my case) 2. Extend screen to the TV/Monitor 3. Open something like video player(it can be anything or nothing but for more visibility it better be some window) 4. Close laptop screen OBSERVED RESULT Video isn't shown on TV, you're still seeing the extended part of the screen. EXPECTED RESULT Video is shown on TV, the extended part is replaced by main laptop screen. SOFTWARE/OS VERSIONS Linux/KDE Plasma: the latest Manjaro - 5.14.3 ADDITIONAL INFORMATION I understand that maybe for some this is exactly what they want. But could you bring the previous behaviour as well, as an option on the widget? Like a checkbox that says something like "Show main screen on secondary display when laptop is closed". Also i wasn't using this function for some time, the latest one was 5.11 and it worked back then. -- You are receiving this mail because: You are watching all bug changes.
[plasmashell] [Bug 399143] widgets/lineedit displays no text
https://bugs.kde.org/show_bug.cgi?id=399143 --- Comment #19 from Gleb Popov <6year...@gmail.com> --- (In reply to Serge Volkov from comment #18) > And delete Mainblock.qmlc file. Where is it located? I have no .qmlc files in /usr/local/share/plasma/look-and-feel/org.kde.breeze.desktop/contents/lockscreen -- You are receiving this mail because: You are watching all bug changes.
[digikam] [Bug 401423] Video sidecar files nor read or written
https://bugs.kde.org/show_bug.cgi?id=401423 Maik Qualmann changed: What|Removed |Added CC||metzping...@gmail.com --- Comment #2 from Maik Qualmann --- The FilePath is not saved by the FFmpeg Loader is an error, but this can be done later in the code. We do not really want to scan video files with Exiv2. However, it is unavoidable with sidecars. I think we should only do this if the option is enabled in the setup. Maik -- You are receiving this mail because: You are watching all bug changes.
[plasmashell] [Bug 399143] widgets/lineedit displays no text
https://bugs.kde.org/show_bug.cgi?id=399143 --- Comment #20 from Serge Volkov --- Again I was wrong. Add to the /usr/local/share/plasma/look-and-feel/org.kde.breeze.desktop/contents/lockscreen/MainBlock.qml file: 1. Add to the top import QtQuick.Window 2.2 import QtQuick.Controls.Styles.Plasma 2.0 as Styles 2. Add after PlasmaComponents.TextField { style: Styles.TextFieldStyle { renderType: Screen.devicePixelRatio % 1 !== 0 ? Text.QtRendering : Text.NativeRendering } And delete Mainblock.qmlc file. -- You are receiving this mail because: You are watching all bug changes.
[Discover] [Bug 401426] New: offline update error indication
https://bugs.kde.org/show_bug.cgi?id=401426 Bug ID: 401426 Summary: offline update error indication Product: Discover Version: unspecified Platform: Other OS: Linux Status: REPORTED Severity: normal Priority: NOR Component: discover Assignee: aleix...@kde.org Reporter: sit...@kde.org Target Milestone: --- - PK_OFFLINE_UPDATE=1 plasma-discover - update - reboot - have error during offline update - automatic reboot - login After offline updates packagekit creates a marker file which should be read and handled by the UI after the update. Specifically upon error the user needs to get notified about the problem so they may file a bug or repair their system. Possibly even with a link to attempt auto-repair (does discover even support repair? [e.g. pkcon repair]). It'd probably be best to say nothing on successful completion, since that's the default assumption IMO. ➜ cat /var/lib/PackageKit/offline-update-competed [PackageKit Offline Update Results] Success=false ErrorCode=failed-initialization ErrorDetails=Error while installing package: installed samba package post-installation script subprocess returned error exit status 1 -- You are receiving this mail because: You are watching all bug changes.
[plasmashell] [Bug 399143] widgets/lineedit displays no text
https://bugs.kde.org/show_bug.cgi?id=399143 --- Comment #21 from Serge Volkov --- (In reply to Gleb Popov from comment #19) > (In reply to Serge Volkov from comment #18) > > And delete Mainblock.qmlc file. > > Where is it located? I have no .qmlc files in > /usr/local/share/plasma/look-and-feel/org.kde.breeze.desktop/contents/ > lockscreen Does this directory exist? If exists, what files are there? -- You are receiving this mail because: You are watching all bug changes.
[plasmashell] [Bug 399143] widgets/lineedit displays no text
https://bugs.kde.org/show_bug.cgi?id=399143 --- Comment #22 from Gleb Popov <6year...@gmail.com> --- (In reply to Serge Volkov from comment #21) > (In reply to Gleb Popov from comment #19) > > (In reply to Serge Volkov from comment #18) > > > And delete Mainblock.qmlc file. > > > > Where is it located? I have no .qmlc files in > > /usr/local/share/plasma/look-and-feel/org.kde.breeze.desktop/contents/ > > lockscreen > > Does this directory exist? If exists, what files are there? It has MainBlock.qml, which I edited, but not MainBlock.qmlc. There are only .qml files. -- You are receiving this mail because: You are watching all bug changes.
[plasmashell] [Bug 399143] widgets/lineedit displays no text
https://bugs.kde.org/show_bug.cgi?id=399143 --- Comment #23 from Serge Volkov --- (In reply to Gleb Popov from comment #22) > (In reply to Serge Volkov from comment #21) > > (In reply to Gleb Popov from comment #19) > > > (In reply to Serge Volkov from comment #18) > > > > And delete Mainblock.qmlc file. > > > > > > Where is it located? I have no .qmlc files in > > > /usr/local/share/plasma/look-and-feel/org.kde.breeze.desktop/contents/ > > > lockscreen > > > > Does this directory exist? If exists, what files are there? > > It has MainBlock.qml, which I edited, but not MainBlock.qmlc. There are only > .qml files. It is OK. Edit this file (comment 20). And check lockscreen. -- You are receiving this mail because: You are watching all bug changes.
[KScreen] [Bug 401427] New: Changing resolution changes refresh rate
https://bugs.kde.org/show_bug.cgi?id=401427 Bug ID: 401427 Summary: Changing resolution changes refresh rate Product: KScreen Version: 5.14.3 Platform: Manjaro OS: Linux Status: REPORTED Severity: normal Priority: NOR Component: common Assignee: se...@kde.org Reporter: sun...@hotmail.ru Target Milestone: --- SUMMARY If you change resolution it changes refresh rate as well and in my case to something like 40s. If i change refresh rate first and Then change resolution it changes what i want. But if i change refresh rate to Automatic it chanes resolution again. This behaviour is frustrating alot. STEPS TO REPRODUCE << A >> 1. Change screen resolution << B >> 1. Change resolution to non native 2. Change refresh resolution to Auto OBSERVED RESULT << A >> Changes refresh rate and not to an optimal value either. << B >> Changes screen resolution to native EXPECTED RESULT << A >> Refresh rate is unchanged << B >> Screen resolution is unchanged SOFTWARE/OS VERSIONS Linux/KDE Plasma: the latest Manjaro, X11 session -- You are receiving this mail because: You are watching all bug changes.
[systemsettings] [Bug 208204] Browse option in Configure Your Desktop / Default Applications - System Settings / Web Browser is buggy
https://bugs.kde.org/show_bug.cgi?id=208204 Wolfgang Bauer changed: What|Removed |Added CC||wba...@tmo.at --- Comment #7 from Wolfgang Bauer --- (In reply to Nate Graham from comment #6) > The Konqueror name issue > is a packaging matter that should be taken up with distro maintainers and > packagers. Not really. Konqueror upstream does actually (still) ship "konqbrowser.desktop"... See https://cgit.kde.org/konqueror.git/tree/konqbrowser.desktop -- You are receiving this mail because: You are watching all bug changes.
[krita] [Bug 401405] The app does not let me save my works and says "access denied" everytime I try to save it.
https://bugs.kde.org/show_bug.cgi?id=401405 Boudewijn Rempt changed: What|Removed |Added Status|REPORTED|NEEDSINFO CC||b...@valdyas.org Resolution|--- |WAITINGFORINFO --- Comment #3 from Boudewijn Rempt --- Setting to needsinfo. -- You are receiving this mail because: You are watching all bug changes.
[krita] [Bug 401396] Stabiliser Lag
https://bugs.kde.org/show_bug.cgi?id=401396 Boudewijn Rempt changed: What|Removed |Added CC||b...@valdyas.org --- Comment #1 from Boudewijn Rempt --- Hm, so it's not a regression? Does it matter whether instant preview is enabled or disabled? Or whether autosave is enabled or disabled? -- You are receiving this mail because: You are watching all bug changes.
[krita] [Bug 401346] GMIC download error
https://bugs.kde.org/show_bug.cgi?id=401346 Boudewijn Rempt changed: What|Removed |Added Resolution|--- |UPSTREAM CC||b...@valdyas.org Status|REPORTED|RESOLVED --- Comment #1 from Boudewijn Rempt --- I've asked here: https://github.com/c-koi/gmic-qt/issues/57 That's where Krita's gmic-qt plugin is being developed. -- You are receiving this mail because: You are watching all bug changes.
[kdevelop] [Bug 401361] Access to build settings impossible
https://bugs.kde.org/show_bug.cgi?id=401361 --- Comment #2 from bugtrack...@cdstm.ch --- (In reply to Kevin Funk from comment #1) > Fixed in 5.3.1 > > *** This bug has been marked as a duplicate of bug 400769 *** Thanks my dude ! -- You are receiving this mail because: You are watching all bug changes.
[frameworks-purpose] [Bug 400608] "Send via Email" always tries to use KMail, ignores default email client set in System Settings > Applications > Default Applications
https://bugs.kde.org/show_bug.cgi?id=400608 --- Comment #9 from Patrick Silva --- (In reply to Nate Graham from comment #8) > (In reply to Patrick Silva from comment #4) > > It's not working on my system too. > > Window to compose email opens but the file is not attached. > > Tested with png and webm files. > This seems like a separate issue. Does the text field have "%u" in it after > "thunderbird"? If not, try adding that so that it says "thunderbird %u". it works as expected after add "%u". -- You are receiving this mail because: You are watching all bug changes.
[digikam] [Bug 401423] Video sidecar files nor read or written
https://bugs.kde.org/show_bug.cgi?id=401423 --- Comment #3 from Kristian Karl --- Oh, sorry for not providing the version information. I built it from latest master 244785fc86dd446afcb4c2ecc05516ce00f839a7, using: cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo -DBUILD_TESTING=OFF -DENABLE_MYSQLSUPPORT=ON -DENABLE_INTERNALMYSQL=ON -DENABLE_MEDIAPLAYER=ON -DENABLE_DBUS=ON -DENABLE_APPSTYLES=ON .. && make -j$(nproc --all) && sudo make -j$(nproc --all) install -- You are receiving this mail because: You are watching all bug changes.
[krita] [Bug 401245] can't see selected area , can't see the doted line after pressing horizontal or vertical mirror tool
https://bugs.kde.org/show_bug.cgi?id=401245 Boudewijn Rempt changed: What|Removed |Added Status|REPORTED|NEEDSINFO Resolution|--- |WAITINGFORINFO --- Comment #2 from Boudewijn Rempt --- Setting to needsinfo. -- You are receiving this mail because: You are watching all bug changes.
[okular] [Bug 401428] New: Okular Crashed While closing PDF Document
https://bugs.kde.org/show_bug.cgi?id=401428 Bug ID: 401428 Summary: Okular Crashed While closing PDF Document Product: okular Version: 1.4.3 Platform: Ubuntu Packages OS: Linux Status: REPORTED Keywords: drkonqi Severity: crash Priority: NOR Component: general Assignee: okular-de...@kde.org Reporter: l...@pt.lu Target Milestone: --- Application: okular (1.4.3) Qt Version: 5.11.1 Frameworks Version: 5.50.0 Operating System: Linux 4.18.0-11-generic x86_64 Distribution: Ubuntu 18.10 -- Information about the crash: - What I was doing when the application crashed: I closed a PDF Document I was reading. The source of said Document is https://www.oevsv.at/export/shared/.content/.galleries/pdf-Downloads/20181114-Prasentation-Novelle-TKG-mit-Amateurfunkdienst.pdf The crash does not seem to be reproducible. -- Backtrace: Application: Okular (okular), signal: Aborted Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1". [Current thread is 1 (Thread 0x7fd6344a3800 (LWP 4231))] Thread 2 (Thread 0x7fd62bfff700 (LWP 4233)): #0 0x7fd639a116d9 in __GI___poll (fds=0x7fd6240137f0, nfds=1, timeout=-1) at ../sysdeps/unix/sysv/linux/poll.c:29 #1 0x7fd63788ee46 in g_main_context_poll (priority=, n_fds=1, fds=0x7fd6240137f0, timeout=, context=0x7fd624000bf0) at ../../../../glib/gmain.c:4221 #2 g_main_context_iterate (context=context@entry=0x7fd624000bf0, block=block@entry=1, dispatch=dispatch@entry=1, self=) at ../../../../glib/gmain.c:3915 #3 0x7fd63788ef6c in g_main_context_iteration (context=0x7fd624000bf0, may_block=may_block@entry=1) at ../../../../glib/gmain.c:3981 #4 0x7fd639f3615b in QEventDispatcherGlib::processEvents (this=0x7fd624000b20, flags=...) at kernel/qeventdispatcher_glib.cpp:425 #5 0x7fd639ee316b in QEventLoop::exec (this=this@entry=0x7fd62bffed70, flags=..., flags@entry=...) at ../../include/QtCore/../../src/corelib/global/qflags.h:140 #6 0x7fd639d320b6 in QThread::exec (this=this@entry=0x7fd63a269d60 <(anonymous namespace)::Q_QGS__q_manager::innerFunction()::holder>) at ../../include/QtCore/../../src/corelib/global/qflags.h:120 #7 0x7fd63a1ef545 in QDBusConnectionManager::run (this=0x7fd63a269d60 <(anonymous namespace)::Q_QGS__q_manager::innerFunction()::holder>) at qdbusconnection.cpp:178 #8 0x7fd639d3bc87 in QThreadPrivate::start (arg=0x7fd63a269d60 <(anonymous namespace)::Q_QGS__q_manager::innerFunction()::holder>) at thread/qthread_unix.cpp:367 #9 0x7fd6398e4164 in start_thread (arg=) at pthread_create.c:486 #10 0x7fd639a1ddef in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:95 Thread 1 (Thread 0x7fd6344a3800 (LWP 4231)): [KCrash Handler] #6 __GI_raise (sig=sig@entry=6) at ../sysdeps/unix/sysv/linux/raise.c:50 #7 0x7fd639925535 in __GI_abort () at abort.c:79 #8 0x7fd62a7c19c5 in pa_close_pipe (fds=fds@entry=0x559c68812b00) at pulsecore/core-util.c:2647 #9 0x7fd62a93d0a2 in pa_mainloop_free (m=0x559c68812a30) at pulse/mainloop.c:579 #10 0x7fd62a94cc8d in pa_threaded_mainloop_free (m=0x559c688129f0) at pulse/thread-mainloop.c:137 #11 0x7fd628086c7e in pulse_driver_destroy (c=0x559c68810ec0) at pulse.c:471 #12 0x7fd630d64dd7 in driver_destroy (c=c@entry=0x559c68810ec0) at dso.c:292 #13 0x7fd630d5c658 in ca_context_destroy (c=0x559c68810ec0) at common.c:186 #14 0x7fd631961d40 in NotifyByAudio::~NotifyByAudio (this=0x559c68810e60, __in_chrg=) at ./src/notifybyaudio_canberra.cpp:62 #15 0x7fd631961dd9 in NotifyByAudio::~NotifyByAudio (this=0x559c68810e60, __in_chrg=) at ./src/notifybyaudio_canberra.cpp:59 #16 0x7fd639f0b6ab in QObjectPrivate::deleteChildren (this=this@entry=0x559c6880af40) at kernel/qobject.cpp:1997 #17 0x7fd639f143a4 in QObject::~QObject (this=, __in_chrg=) at kernel/qobject.cpp:1025 #18 0x7fd63193ac89 in KNotificationManagerSingleton::~KNotificationManagerSingleton (this=, __in_chrg=) at ./src/knotificationmanager.cpp:73 #19 (anonymous namespace)::Q_QGS_s_self::Holder::~Holder (this=, __in_chrg=) at ./src/knotificationmanager.cpp:73 #20 0x7fd63994742c in __run_exit_handlers (status=0, listp=0x7fd639ae7718 <__exit_funcs>, run_list_atexit=run_list_atexit@entry=true, run_dtors=run_dtors@entry=true) at exit.c:108 #21 0x7fd63994755a in __GI_exit (status=) at exit.c:139 #22 0x7fd6399270a2 in __libc_start_main (main=0x559c65ee82b0 , argc=2, argv=0x7fff969298f8, init=, fini=, rtld_fini=, stack_end=0x7fff969298e8) at ../csu/libc-start.c:342 #23 0x559c65ee9f4a in _start () at ./shell/main.cpp:66 [Inferior 1 (process 4231) detached] The reporter indicates this bug may be a duplicate of or related to bug 393478. Possible duplicates by query: bug 395158, bug 394824. Reported using DrKonqi -- You are receiving this mail because: You are watching all bug changes.
[trojita] [Bug 401429] New: ESEARCH REMOVEFROM with threading and searching: MailboxException ESEARCH: there's no such UID
https://bugs.kde.org/show_bug.cgi?id=401429 Bug ID: 401429 Summary: ESEARCH REMOVEFROM with threading and searching: MailboxException ESEARCH: there's no such UID Product: trojita Version: git Platform: Compiled Sources OS: Linux Status: REPORTED Severity: minor Priority: NOR Component: IMAP Assignee: trojita-b...@kde.org Reporter: j...@kde.org Target Milestone: --- I attempted to move some messages from a result of a search with an active threading display. 13:32:10.739 >>> y305 UID SEARCH RETURN (ALL UPDATE) CHARSET utf-8 OR SUBJECT xxx FROM xxx␍␊ 13:32:10.739 >>> y306 UID THREAD REFS utf-8 OR SUBJECT xxx FROM xxx␍␊ 13:32:10.740 <<< y304 OK Idle completed (0.030 + 118.711 + 118.739 secs).␍␊ 13:32:11.739 <<< * ESEARCH (TAG "y305") UID ALL 37868,37875,42712,46456,46900␍␊ 13:32:11.740 <<< * THREAD (37868 37875)(42712)(46456)(46900)␍␊ 13:32:11.740 <<< y305 OK Search completed (0.641 + 0.000 + 0.998 secs).␍␊ 13:32:11.740 <<< y306 OK Thread completed (0.359 + 0.000 + 0.358 secs).␍␊ 13:32:11.749 ThreadingMsgListModel for INBOX ThreadingMsgListModel::wantThreading: THREAD contains info about UID 46900 (or higher), search has 46900 13:32:11.755 Imap::Mailbox::ThreadTask Completed 13:32:14.265 Imap::Mailbox::UpdateFlagsTask Activated 13:32:14.265 Imap::Mailbox::FetchMsgPartTask INBOX: parts BINARY.PEEK[1] for UIDs 46456 Activated 13:32:14.265 >>> y307 UID STORE 46456 +FLAGS (\Seen)␍␊ 13:32:14.265 >>> y308 UID FETCH 46456 (BINARY.PEEK[1])␍␊ 13:32:14.484 <<< * 8869 FETCH (UID 46456 BINARY[1] {220}␍␊xxxyyyzzz(+ XYZ more bytes) 13:32:14.484 <<< * 8869 FETCH (UID 46456 MODSEQ (64593) FLAGS (\Seen))␍␊ 13:32:14.484 <<< y307 OK Store completed (0.001 + 0.000 + 0.085 secs).␍␊ 13:32:14.484 <<< y308 OK Fetch completed (0.086 + 0.000 + 0.085 secs).␍␊ 13:32:14.500 Imap::Mailbox::UpdateFlagsTask Completed 13:32:14.501 Imap::Mailbox::FetchMsgPartTask INBOX: parts BINARY.PEEK[1] for UIDs 46456 Fetched parts 13:32:14.502 conn Mailbox opened. 13:32:14.502 Imap::Mailbox::FetchMsgPartTask INBOX: parts BINARY.PEEK[1] for UIDs 46456 Completed 13:32:14.502 Imap::Mailbox::FetchMsgPartTask INBOX: parts BINARY.PEEK[1] for UIDs 46456 Fetched part BINARY.PEEK[1] for UID 46456 13:32:20.204 >>> y309 IDLE␍␊ 13:32:20.447 <<< + idling␍␊ 13:32:21.378 >>> DONE␍␊ 13:32:21.379 Imap::Mailbox::CopyMoveMessagesTask Activated 13:32:21.408 >>> y310 UID MOVE 37868,37875,46456 cesnet␍␊ 13:32:21.409 <<< y309 OK Idle completed (0.242 + 0.960 + 1.201 secs).␍␊ 13:32:22.839 ThreadingMsgListModel for INBOX Current threading invalidated by changed search 13:32:22.841 >>> y311 CANCELUPDATE "y305"␍␊ 13:32:22.842 Imap::Mailbox::ThreadTask Activated 13:32:22.844 >>> y312 UID THREAD REFS utf-8 ALL␍␊ 13:32:25.595 <<< * OK [COPYUID 1349102316 37868,37875,46456 2833:2835] Moved UIDs.␍␊ 13:32:25.595 <<< * ESEARCH (TAG "y305") UID REMOVEFROM (0 37868,37875,46456)␍␊ 13:32:25.595 <<< * VANISHED 37868,37875,46456␍␊ 13:32:25.595 <<< y310 OK [HIGHESTMODSEQ 64594] Move completed (4.182 + 0.000 + 4.181 secs).␍␊ 13:32:25.595 Warning: unhandled untagged OK with a response code 13:32:25.607 Imap::Mailbox::KeepMailboxOpenTask attached to INBOX Failed: The connection is being killed for unspecified reason 13:32:25.608 Imap::Mailbox::SortTask Failed: The connection is being killed for unspecified reason 13:32:25.608 Imap::Mailbox::CopyMoveMessagesTask Failed: The connection is being killed for unspecified reason 13:32:25.622 Imap::Mailbox::ThreadTask Failed: The connection is being killed for unspecified reason 13:32:25.622 *** Connection killed. 13:32:25.622 MailboxException ESEARCH: there's no such UID␊␊ -- You are receiving this mail because: You are watching all bug changes.
[trojita] [Bug 401429] ESEARCH REMOVEFROM with threading and searching: MailboxException ESEARCH: there's no such UID
https://bugs.kde.org/show_bug.cgi?id=401429 Jan Kundrát changed: What|Removed |Added Ever confirmed|0 |1 Status|REPORTED|CONFIRMED -- You are receiving this mail because: You are watching all bug changes.
[plasmashell] [Bug 399143] widgets/lineedit displays no text
https://bugs.kde.org/show_bug.cgi?id=399143 --- Comment #24 from Serge Volkov --- In reply to Nate Graham from comment #16) > Are you using a non-integer scale factor? I check System Settings -> Display and Monitor -> Displays -> Scale Display. Scale factor equal 1. If I use VESA driver and default qt5-declarative package, then I see that http://www.ulbsd.ru/devel/rendering_vesa_default.png If I use VESA driver and qt5-declarative package compiled with QT_QUICK_DEFAULT_TEXT_RENDER_TYPE=NativeTextRendering, then I see that http://www.ulbsd.ru/devel/rendering_vesa_native.png If I change scale factor to 1.1 in System Settings, then all elements increase their size. But in the program (for example lockscreen) Screen.devicePixelRatio parameter is always equal to 1 regardless of the scale factor in System Settings. I do not understand anything. Maybe I have Qt5 version with bugs? My version is 5.11.2. -- You are receiving this mail because: You are watching all bug changes.
[trojita] [Bug 401285] Resource compilation issue using MinGW
https://bugs.kde.org/show_bug.cgi?id=401285 --- Comment #2 from Jan Kundrát --- Hi Twissel, this will be a typical "patches welcome" response. I have no clue how native builds with mingw work. If you can contribute a patch which makes this, er, "semi-native build" happen without breaking cross-compilation from Linux, I'll be happy to merge it. -- You are receiving this mail because: You are watching all bug changes.
[plasma-pa] [Bug 401430] New: Sound config module is not translated in stand alone window
https://bugs.kde.org/show_bug.cgi?id=401430 Bug ID: 401430 Summary: Sound config module is not translated in stand alone window Product: plasma-pa Version: 5.14.3 Platform: Other OS: Linux Status: REPORTED Severity: normal Priority: NOR Component: kcm Assignee: now...@gmail.com Reporter: i...@guoyunhe.me CC: plasma-b...@kde.org Target Milestone: --- Created attachment 116507 --> https://bugs.kde.org/attachment.cgi?id=116507&action=edit Left: system settings, fully translated. Right: stand-alone, partly translated. SUMMARY Sound config module is translated when opening inside System Settings. But it is not translated when open it as stand alone window through system tray. STEPS TO REPRODUCE 1. Change system language to non-English language. 2. Right click system tray icon of sound and choose configure sound. 3. The stand alone sound config window should appear. OBSERVED RESULT Some texts in the window are not translated. EXPECTED RESULT All texts should be translated. SOFTWARE/OS VERSIONS Windows: MacOS: Linux/KDE Plasma: openSUSE Tumbleweed (available in About System) KDE Plasma Version: 5.14.3 KDE Frameworks Version: 5.52.0 Qt Version: 5.11.2 ADDITIONAL INFORMATION -- You are receiving this mail because: You are watching all bug changes.
[konsole] [Bug 401298] Wide fonts rendered halfway.
https://bugs.kde.org/show_bug.cgi?id=401298 Christoph Feck changed: What|Removed |Added CC||p...@kantyka.net --- Comment #3 from Christoph Feck --- *** Bug 401421 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are watching all bug changes.
[konsole] [Bug 401421] Unicode symbols right-side cropped in konsole
https://bugs.kde.org/show_bug.cgi?id=401421 Christoph Feck changed: What|Removed |Added Resolution|--- |DUPLICATE Status|REPORTED|RESOLVED --- Comment #2 from Christoph Feck --- *** This bug has been marked as a duplicate of bug 401298 *** -- You are receiving this mail because: You are watching all bug changes.
[latte-dock] [Bug 401431] New: Color of applet-window-buttons is not painted correctly
https://bugs.kde.org/show_bug.cgi?id=401431 Bug ID: 401431 Summary: Color of applet-window-buttons is not painted correctly Product: latte-dock Version: git (master) Platform: Other OS: Linux Status: REPORTED Severity: normal Priority: NOR Component: containment Assignee: mvourla...@gmail.com Reporter: tr...@yandex.com Target Milestone: --- A continuation from: https://github.com/psifidotos/applet-window-buttons/issues/25 Screenshot: https://user-images.githubusercontent.com/11857205/49017371-4bf00680-f1bb-11e8-8ac8-e398f49456f2.png -- You are receiving this mail because: You are watching all bug changes.
[frameworks-kio] [Bug 352761] Dolphin randomly skips files on large transfers by copy or move
https://bugs.kde.org/show_bug.cgi?id=352761 --- Comment #6 from David Edmundson --- Git commit 2beb1a0ad23177f7dc2e5ee622bed3a70f671278 by David Edmundson. Committed on 26/11/2018 at 13:17. Pushed by davidedmundson into branch 'Plasma/5.12'. Set error if a kjob host disappears from kuiserver with active jobs Summary: If the host of a kjob crashes or is killed kuiserver currently reports that the job has been completed successfully. This is seriously wrong as it could lead a user to perform a potentially destructive operation. Setting any error (that's not 0 or 1) will cause plasmashell, the main kuiserver view, to show a persistent notification that a job has failed. For master I will use a more correct new enum, new error text, and a way to tell for KIO operations to report to the uiserver if the host crashing is important or not. Test Plan: Whilst copying a million files killed dolphin Got a persistent error instead of a success message on the last file it was on Moving files successfully then killing the app remained fine Reviewers: #plasma, broulik Reviewed By: #plasma, broulik Subscribers: broulik, plasma-devel Tags: #plasma Differential Revision: https://phabricator.kde.org/D17171 M +1-0kuiserver/progresslistmodel.cpp https://commits.kde.org/plasma-workspace/2beb1a0ad23177f7dc2e5ee622bed3a70f671278 -- You are receiving this mail because: You are watching all bug changes.
[krita] [Bug 401326] Krita crashes on trying to generate a cache for 130+ FullHD frames
https://bugs.kde.org/show_bug.cgi?id=401326 Boudewijn Rempt changed: What|Removed |Added Keywords||regression, release_blocker -- You are receiving this mail because: You are watching all bug changes.
[kdenlive] [Bug 401432] New: Cannot Read Flash Drive
https://bugs.kde.org/show_bug.cgi?id=401432 Bug ID: 401432 Summary: Cannot Read Flash Drive Product: kdenlive Version: 18.08.2 Platform: Windows CE OS: MS Windows Status: REPORTED Severity: normal Priority: NOR Component: User Interface Assignee: j...@kdenlive.org Reporter: mrtert...@outlook.com Target Milestone: --- Created attachment 116508 --> https://bugs.kde.org/attachment.cgi?id=116508&action=edit Nothing is showing SUMMARY So, i have a flash drive that has all my video clips in it and i would like to import them into Kdenlive but upon pressing "Project, Add clip" and selecting my flash drive, kdenlive does not seem to pick up any video clips from my flash drive apart from is own files. STEPS TO REPRODUCE 1. Open Kdenlive 2. Select Project, then Add Clip 3. Then select a Flash Drive from Removable Media 4. There should be nothing showing on the flash drive OBSERVED RESULT The menu looks empty when my flash drive is selected EXPECTED RESULT Kdenlive should pick up files in thee flash drive SOFTWARE/OS VERSIONS Windows: 10 MacOS: Do not have Linux/KDE Plasma: Do not have (available in About System) KDE Plasma Version: N/A KDE Frameworks Version:N/A Qt Version: N/A ADDITIONAL INFORMATION This needs fixing -- You are receiving this mail because: You are watching all bug changes.
[kdenlive] [Bug 401432] Cannot Read Flash Drive
https://bugs.kde.org/show_bug.cgi?id=401432 MisterTee changed: What|Removed |Added Keywords||reproducible -- You are receiving this mail because: You are watching all bug changes.
[systemsettings] [Bug 393202] Clipped text in sidebar view with certain non-standard font sizes
https://bugs.kde.org/show_bug.cgi?id=393202 Nate Graham changed: What|Removed |Added Resolution|--- |FIXED Latest Commit||https://cgit.kde.org/kiriga ||mi.git/commit/?id=508236f2d ||f2458c53c07bcb3e83e06a6b5c7 ||d332 Version Fixed In||5.53 Status|CONFIRMED |RESOLVED --- Comment #25 from Nate Graham --- This was fixed in a better way with a Kirigami patch, so all users benefited: https://cgit.kde.org/kirigami.git/commit/?id=508236f2df2458c53c07bcb3e83e06a6b5c7d332 -- You are receiving this mail because: You are watching all bug changes.
[frameworks-kirigami] [Bug 401174] Flickables should be pixelAligned by default
https://bugs.kde.org/show_bug.cgi?id=401174 Nate Graham changed: What|Removed |Added Status|CONFIRMED |RESOLVED Version Fixed In||5.53 Latest Commit||https://cgit.kde.org/kiriga ||mi.git/commit/?id=508236f2d ||f2458c53c07bcb3e83e06a6b5c7 ||d332 Resolution|--- |FIXED --- Comment #3 from Nate Graham --- Fixed along with the fix for Bug 393202. -- You are receiving this mail because: You are watching all bug changes.
[systemsettings] [Bug 393202] Clipped text in sidebar view with certain non-standard font sizes
https://bugs.kde.org/show_bug.cgi?id=393202 Nate Graham changed: What|Removed |Added Status|RESOLVED|VERIFIED --- Comment #26 from Nate Graham --- Verified that your fix fixes it. Thanks so much, Marco! -- You are receiving this mail because: You are watching all bug changes.
[plasma-nm] [Bug 401325] Plasma-nm asks for kwallet password when disconnecting from VPN
https://bugs.kde.org/show_bug.cgi?id=401325 Jan Grulich changed: What|Removed |Added Resolution|--- |UPSTREAM Status|REPORTED|RESOLVED --- Comment #7 from Jan Grulich --- Closing, it's an issue in NetworkManager. -- You are receiving this mail because: You are watching all bug changes.
[plasma-nm] [Bug 401132] Crash on manually adding wifi connection
https://bugs.kde.org/show_bug.cgi?id=401132 Jan Grulich changed: What|Removed |Added CC||jgrul...@redhat.com --- Comment #1 from Jan Grulich --- Is this reproducible everytime you try to add a new wireless network? -- You are receiving this mail because: You are watching all bug changes.
[krusader] [Bug 401433] New: Search window only jumps to file clicked if actual panel not showing folder where the file clicked is
https://bugs.kde.org/show_bug.cgi?id=401433 Bug ID: 401433 Summary: Search window only jumps to file clicked if actual panel not showing folder where the file clicked is Product: krusader Version: 2.7.1 Platform: openSUSE RPMs OS: Linux Status: REPORTED Severity: normal Priority: NOR Component: search Assignee: krusader-bugs-n...@kde.org Reporter: rafael.linux.u...@gmail.com CC: krusader-bugs-n...@kde.org Target Milestone: --- SUMMARY >From the "search" window, after a search is done and the files matched are showed, if I click on a file of the results tab, Krusader window appear, showing in actual panel the folder where the file clicked is located, but the file clicked is not automatically selected (as it should). If in Krusader panel, I change to other folder and in the "Search" window I click in the same previously clicked filename, Krusader panel will change to the correct folder (again) BUT the file clicked is NOT selected. That's to say, Krusader auto-select STEPS TO REPRODUCE 1. Search for files containing same (existing) text in a folder with subfolders. Must exist at least TWO files matching criteria in each folder, to see the issue. 2. In the "Results" tab in "Search" window, ordered by name, to have files ordered first by folder, and the by filename. It should appear two files in each folder. 3. Click on the first file (of the two that must appear in each folder) of a folder. Krusader panel will change to the folder where is located the file and (if not in the folder previously) Krusader will highlight the file you clicked in "Search" window. 4. Click on the second file of the same previously folder. This time, Krusader will not select the file you clicked. 5. Return to "Results" tab and this time choose the first file in a distinct folder than in steps 3 and 4. Krusader will show you the folder and will highlight the clicked file. 6. Repeat step 4. Result is the same. OBSERVED RESULT Krusader doesn't highlight (select) files if Krusader are showing yet the folder where the file clicked is located. EXPECTED RESULT To change to the folder containing the file and highlightning the clicked file. SOFTWARE/OS VERSIONS Linux/KDE Plasma: OpenSUSE 15 KDE Plasma Version: 5.12.6 KDE Frameworks Version: 5.45.0 Qt Version: 5.9.4 ADDITIONAL INFORMATION -- You are receiving this mail because: You are watching all bug changes.
[plasma-nm] [Bug 399318] Asks for password for WPA/TKIP network multiple times when it's already in KWallet (with PAM)
https://bugs.kde.org/show_bug.cgi?id=399318 --- Comment #12 from Jan Grulich --- >From the log I can see it fails on missing secret agent, which it shouldn't in case your password is stored to all users (unencrypted). Can you attach here output from "nmcli -f all connection show SoDream"? -- You are receiving this mail because: You are watching all bug changes.
[plasma-nm] [Bug 400927] When changing DNS provider, NM keeps my router's IP as the primary address.
https://bugs.kde.org/show_bug.cgi?id=400927 Jan Grulich changed: What|Removed |Added Resolution|--- |WAITINGFORINFO Status|REPORTED|NEEDSINFO --- Comment #2 from Jan Grulich --- Can you provide requested information? -- You are receiving this mail because: You are watching all bug changes.
[plasma-nm] [Bug 400760] [Openconnect]VPN login dialog suppresses Wifi connection password dialog
https://bugs.kde.org/show_bug.cgi?id=400760 Jan Grulich changed: What|Removed |Added CC||jgrul...@redhat.com Summary|VPN login dialog suppresses |[Openconnect]VPN login |Wifi connection password|dialog suppresses Wifi |dialog |connection password dialog -- You are receiving this mail because: You are watching all bug changes.
[plasma-nm] [Bug 401132] Crash on manually adding wifi connection
https://bugs.kde.org/show_bug.cgi?id=401132 Jan Grulich changed: What|Removed |Added Resolution|--- |WAITINGFORINFO Status|REPORTED|NEEDSINFO --- Comment #2 from Jan Grulich --- Forgot to change status. Please provide requested information. -- You are receiving this mail because: You are watching all bug changes.
[krusader] [Bug 401433] Highlight/autoselect file issue from "Results" tab in search window
https://bugs.kde.org/show_bug.cgi?id=401433 Rafael Linux User changed: What|Removed |Added Summary|Search window only jumps to |Highlight/autoselect file |file clicked if actual |issue from "Results" tab in |panel not showing folder|search window |where the file clicked is | CC||rafael.linux.u...@gmail.com -- You are receiving this mail because: You are watching all bug changes.
[plasma-nm] [Bug 399318] Asks for password for WPA/TKIP network multiple times when it's already in KWallet (with PAM)
https://bugs.kde.org/show_bug.cgi?id=399318 Jan Grulich changed: What|Removed |Added Status|REPORTED|NEEDSINFO Resolution|--- |WAITINGFORINFO --- Comment #13 from Jan Grulich --- Forgot to change the status. Please provide requested information. -- You are receiving this mail because: You are watching all bug changes.
[plasma-nm] [Bug 385395] [Openconnect] Autoconnect and save password for VPN openconnect connection
https://bugs.kde.org/show_bug.cgi?id=385395 Jan Grulich changed: What|Removed |Added Summary|Autoconnect and save|[Openconnect] Autoconnect |password for VPN|and save password for VPN |openconnect connection |openconnect connection CC||jgrul...@redhat.com -- You are receiving this mail because: You are watching all bug changes.
[plasma-nm] [Bug 400760] VPN login dialog suppresses Wifi connection password dialog
https://bugs.kde.org/show_bug.cgi?id=400760 Jan Grulich changed: What|Removed |Added Summary|[Openconnect]VPN login |VPN login dialog suppresses |dialog suppresses Wifi |Wifi connection password |connection password dialog |dialog -- You are receiving this mail because: You are watching all bug changes.
[krita] [Bug 401434] New: Configure Toolbar > "Zoom" widget affecting only the latest open subwindow
https://bugs.kde.org/show_bug.cgi?id=401434 Bug ID: 401434 Summary: Configure Toolbar > "Zoom" widget affecting only the latest open subwindow Product: krita Version: git master Platform: Appimage OS: Linux Status: REPORTED Severity: normal Priority: NOR Component: General Assignee: krita-bugs-n...@kde.org Reporter: freebo...@tiscali.it Target Milestone: --- (tested with Krita 4.2.0-pre-alpha (git 19ba224) - Ubuntu 14.04, Unity) Hi. If I add the "Zoom" widget to the main toolbar, then it only affects the last document open: 1. add the "Zoom" widget to the toolbar 2. switch to the subwindow mode 3. create 2 document 4. give the focus to the first open document 5. use the "Zoom" widget in the toolbar Actual Results: it zooms the canvas of the latest open document Expected Results: always affect the active subwindow -- You are receiving this mail because: You are watching all bug changes.
[krita] [Bug 401434] Configure Toolbar > "Zoom" widget affecting only the latest open subwindow
https://bugs.kde.org/show_bug.cgi?id=401434 Boudewijn Rempt changed: What|Removed |Added Status|REPORTED|CONFIRMED Ever confirmed|0 |1 CC||b...@valdyas.org --- Comment #1 from Boudewijn Rempt --- Hm, maybe we should make it impossible to add the zoom widget to the toolbar... This is such a can of works. -- You are receiving this mail because: You are watching all bug changes.
[systemsettings] [Bug 208204] Browse option in Configure Your Desktop / Default Applications - System Settings / Web Browser is buggy
https://bugs.kde.org/show_bug.cgi?id=208204 --- Comment #8 from Nate Graham --- Ok, please submit a bug against Konqueror then. :) -- You are receiving this mail because: You are watching all bug changes.
[krita] [Bug 401434] Configure Toolbar > "Zoom" widget affecting only the latest open subwindow
https://bugs.kde.org/show_bug.cgi?id=401434 --- Comment #2 from Boudewijn Rempt --- I mean, _worms_. -- You are receiving this mail because: You are watching all bug changes.
[krita] [Bug 401396] Stabiliser Lag
https://bugs.kde.org/show_bug.cgi?id=401396 --- Comment #2 from Bollebib --- instant preview seems to do nothing after some testing I think it happens wgen a large file is in krita's memory When i have a small file there is no issue When i have a large file there is lag when i paint in a small file with a large file in the background ,there is lag also so maybe there is a bottle neck created somehow. Most things go fast tho even with a big file. But there is lag with stablizer Edit:tested some more Apparantly this happens with ALL smooth options and brushes so its actually NOT a stablizer issue but a performance issue I just noticed it more with stablizer due to the nature of the stroke. -- You are receiving this mail because: You are watching all bug changes.
[plasma-nm] [Bug 399268] Wifi Password Asked Twice
https://bugs.kde.org/show_bug.cgi?id=399268 Jan Grulich changed: What|Removed |Added Status|REOPENED|RESOLVED Resolution|--- |NOT A BUG -- You are receiving this mail because: You are watching all bug changes.
[neon] [Bug 401057] Password can be accidentally entered and be visible into desktop/text editor
https://bugs.kde.org/show_bug.cgi?id=401057 --- Comment #5 from Nate Graham --- (In reply to rugk from comment #4) > I could screencast it, but it is exactly the same behavior as I describe. > Just enter your password directly after the screen (automatically) locks. > > So what exactly cannot you reproduce? After the screen locks and I enter my password in the lock screen, it doesn't show up in an open app with a text field. The reason why I requested a screencast is because I cannot reproduce the issue as described, and often a video helps to illustrate exactly how you're triggering it. -- You are receiving this mail because: You are watching all bug changes.
[plasma-nm] [Bug 349282] )OpenVPN] Can't import OpenVPN configuration files with inline certificates and keys
https://bugs.kde.org/show_bug.cgi?id=349282 Jan Grulich changed: What|Removed |Added Summary|Can't import OpenVPN|)OpenVPN] Can't import |configuration files with|OpenVPN configuration files |inline certificates and |with inline certificates |keys|and keys Version|0.9.3.4 |5.12.6 -- You are receiving this mail because: You are watching all bug changes.
[plasma-nm] [Bug 349282] [OpenVPN] Can't import OpenVPN configuration files with inline certificates and key
https://bugs.kde.org/show_bug.cgi?id=349282 Jan Grulich changed: What|Removed |Added Summary|)OpenVPN] Can't import |[OpenVPN] Can't import |OpenVPN configuration files |OpenVPN configuration files |with inline certificates|with inline certificates |and keys|and key -- You are receiving this mail because: You are watching all bug changes.
[plasmashell] [Bug 401342] Long plasmoid names and/or descriptions are truncated
https://bugs.kde.org/show_bug.cgi?id=401342 --- Comment #4 from Nate Graham --- (In reply to Kai Uwe Broulik from comment #3) > I was never a fan of the two-column widget explorer, it just doesn't work in > German. Perhaps we should revisit the design and opt for a wider delegate > again like we used to have. See also Bug 390575. -- You are receiving this mail because: You are watching all bug changes.
[plasma-nm] [Bug 399973] [RFE] Don't show a popup notification by default every time when a network connection is activated
https://bugs.kde.org/show_bug.cgi?id=399973 Jan Grulich changed: What|Removed |Added CC||jgrul...@redhat.com Summary|Don't show a popup |[RFE] Don't show a popup |notification by default |notification by default |every time when a network |every time when a network |connection is activated |connection is activated -- You are receiving this mail because: You are watching all bug changes.
[plasmashell] [Bug 388270] Custom icon for plasma widget
https://bugs.kde.org/show_bug.cgi?id=388270 Nate Graham changed: What|Removed |Added CC||k...@privat.broulik.de, ||notm...@gmail.com --- Comment #3 from Nate Graham --- Marco and/or Kai isn't there an undocumented way to do this? I recall one of you helping Scott Harvey with this a while back. -- You are receiving this mail because: You are watching all bug changes.
[plasma-nm] [Bug 399993] Hide airplane mode checkbox if no wireless device is available
https://bugs.kde.org/show_bug.cgi?id=33 Jan Grulich changed: What|Removed |Added CC||jgrul...@redhat.com --- Comment #2 from Jan Grulich --- I guess it's basically useless when there is no wifi, modem or a bluetooth. I'll look into it. -- You are receiving this mail because: You are watching all bug changes.
[kscreenlocker] [Bug 401057] Password can be accidentally entered and be visible into desktop/text editor
https://bugs.kde.org/show_bug.cgi?id=401057 Harald Sitter changed: What|Removed |Added Component|Packages User Edition |general Product|neon|kscreenlocker Assignee|neon-b...@kde.org |plasma-b...@kde.org CC||bhus...@gmail.com --- Comment #6 from Harald Sitter --- Moving to screenlocker. -- You are receiving this mail because: You are watching all bug changes.