[KEXI] [Bug 394913] SQLite: Incorrect display of large unsigned int (>0x7FFFFFFF)

2018-06-09 Thread Jarosław Staniek
https://bugs.kde.org/show_bug.cgi?id=394913

Jarosław Staniek  changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
  Latest Commit||https://commits.kde.org/kdb
   ||/bc5a7bea6e12892930e2e02ae3
   ||cc1c6d2b27277f
 Resolution|--- |FIXED

--- Comment #2 from Jarosław Staniek  ---
Git commit bc5a7bea6e12892930e2e02ae3cc1c6d2b27277f by Jaroslaw Staniek.
Committed on 09/06/2018 at 22:01.
Pushed by staniek into branch '3.1'.

SQLite Fix loading value Incorrect display of large unsigned int (>0x7FFF)

Summary: BUG:394913

Test Plan: Follow test case: https://bugs.kde.org/show_bug.cgi?id=394913#c

Reviewers: piggz

Reviewed By: piggz

Subscribers: Kexi-Devel-list

Tags: #kdb

Differential Revision: https://phabricator.kde.org/D13448

M  +4-2src/drivers/sqlite/SqliteCursor.cpp

https://commits.kde.org/kdb/bc5a7bea6e12892930e2e02ae3cc1c6d2b27277f

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

[Falkon] [Bug 395191] New: WebViewTest::loadSignalsChangePageTest() Compared values are not the same (qt-5.11.0)

2018-06-09 Thread Ken Moffat
https://bugs.kde.org/show_bug.cgi?id=395191

Bug ID: 395191
   Summary: WebViewTest::loadSignalsChangePageTest() Compared
values are not the same (qt-5.11.0)
   Product: Falkon
   Version: unspecified
  Platform: unspecified
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: now...@gmail.com
  Reporter: zarniwh...@ntlworld.com
  Target Milestone: ---

* Start testing of WebViewTest *
Config: Using QtTest library 5.11.0, Qt 5.11.0 (x86_64-little_endian-lp64
shared (dynamic) release build; by GCC 8.1.0)
PASS   : WebViewTest::initTestCase()
FAIL!  : WebViewTest::loadSignalsChangePageTest() Compared values are not the
same
   Actual   (((loadFinishedSpy.count(: 2
   Expected (loadFinishedEmitCount)  : 1
   Loc: [/tmp/falkon-3.0.1/autotests/webviewtest.cpp(87)]
PASS   : WebViewTest::cleanupTestCase()
Totals: 2 passed, 1 failed, 0 skipped, 0 blacklisted, 15276ms
* Finished testing of WebViewTest *

Test time =  15.70 sec
--
Test Failed.
"falkon-webviewtest" end time: Jun 09 20:42 BST
"falkon-webviewtest" time elapsed: 00:00:15

Further comments:

If falkon has not yet been installed on a qt-5.11.0 system, 6 out of 10 of the
tests fail. But after installation on at qt-5.11.0 system only this test fails.

On a slightly older system, with qt-5.10 and falkon-3.0.0 already installed,
all 10 tests passed.

Diffing falkon-3.0.0 to 3.0.1 produced the following suspicious change (the
change to 5.11 is not suspicious, the reversal of 2 : 1 to 1 : 2 is):
index a21e693..40b0a57 100644
--- a/falkon-3.0.0/autotests/webviewtest.cpp
+++ b/falkon-3.0.1/autotests/webviewtest.cpp
@@ -82,7 +82,7 @@ void WebViewTest::loadSignalsChangePageTest()
 view.setPage(page2);

 // WebPage: Workaround for broken load started/finished signals in
QtWebEngine 5.10
-const int loadFinishedEmitCount = qstrncmp(qVersion(), "5.10.", 5) == 0 ?
2 : 1;
+const int loadFinishedEmitCount = qstrncmp(qVersion(), "5.11.", 5) == 0 ?
1 : 2;

 QTRY_COMPARE(loadFinishedSpy.count(), loadFinishedEmitCount);
 QCOMPARE(loadStartedSpy.count(), 0);


Editing that line to

const int loadFinishedEmitCount = qstrncmp(qVersion(), "5.11.", 5) == 0 ? 2
: 1;

all the tests pass on the 5.11.0 system.

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

[frameworks-networkmanager-qt] [Bug 394869] network connection failure after setting custom DNS, resetting DNS fails

2018-06-09 Thread Elkasir
https://bugs.kde.org/show_bug.cgi?id=394869

--- Comment #2 from Elkasir  ---
I now know it's not just a problem when changing DNS, it also happens when I
set a cloned MAC address. I suspect changing anything in the "Connections"
causes the network to fail, and changing settings back & rebooting does not
make it work again.

In fedora 28 with plasma (5.12.5) it's also happening.
In KDE Neon 16.04.4 useredition (5.12.5) there's no problem.

I've come across another system (also with a pre 2012 motherboard) that has the
same problem with Kubuntu 18.04. So it's not an isolated case.

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

[KEXI] [Bug 395189] New: Zero value is not displayed in integer columns

2018-06-09 Thread Jarosław Staniek
https://bugs.kde.org/show_bug.cgi?id=395189

Bug ID: 395189
   Summary: Zero value is not displayed in integer columns
   Product: KEXI
   Version: 3.1.0
  Platform: Other
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: Tables
  Assignee: kexi-b...@kde.org
  Reporter: stan...@kde.org
CC: a...@piggz.co.uk, in...@fables.co.za
  Target Milestone: ---

Zero value is not displayed in cells of integer columns  (short, int, big int
sub types).

Instead these cells are empty.

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

[KEXI] [Bug 394914] table default values not displayed

2018-06-09 Thread Jarosław Staniek
https://bugs.kde.org/show_bug.cgi?id=394914

Jarosław Staniek  changed:

   What|Removed |Added

Version|unspecified |3.1.0

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

[KEXI] [Bug 395189] Zero value is not displayed in integer columns

2018-06-09 Thread Jarosław Staniek
https://bugs.kde.org/show_bug.cgi?id=395189

Jarosław Staniek  changed:

   What|Removed |Added

 Status|UNCONFIRMED |ASSIGNED
   Target Milestone|--- |3.1.1
   Assignee|kexi-b...@kde.org   |stan...@kde.org
 Ever confirmed|0   |1

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

[rust-qt-binding-generator] [Bug 395192] New: rust-qt-binding-generator: unable to compile multi-dimensional list

2018-06-09 Thread carl
https://bugs.kde.org/show_bug.cgi?id=395192

Bug ID: 395192
   Summary: rust-qt-binding-generator: unable to compile
multi-dimensional list
   Product: rust-qt-binding-generator
   Version: unspecified
  Platform: Archlinux Packages
OS: Linux
Status: UNCONFIRMED
  Severity: crash
  Priority: NOR
 Component: general
  Assignee: j...@vandenoever.info
  Reporter: schwanc...@protonmail.com
  Target Milestone: ---

Created attachment 113181
  --> https://bugs.kde.org/attachment.cgi?id=113181=edit
make log

Hello, thank you for your work. I tried your libairy and I maybee come across a
bug. 

I'm unable to build the rust binding for this binding.json


{
"cppFile": "src/Binding.cpp",
"rust": {
"dir": "rust",
"interfaceModule": "interface",
"implementationModule": "implementation"
},
"objects": {
"Sources": {
"type": "List",
"itemProperties": {
"name": {
"type": "QString",
"rustByValue": true
},
"novel_list": {
"type": "Source"
}
}
},
"Source": {
"type": "List",
"itemProperties": {
"title": {
"type": "QString",
"rustByValue": true
},
"chapter_list": {
"type": "Novel"
}
}
},
"Novel": {
"type": "List",
"itemProperties": {
"index": {
"type": "quint32"
},
"title": {
"type": "QString",
"rustByValue": true
},
"content": {
"type": "QString",
"rustByValue": true
}
}
}
}
}


I'm able to compile my rust code, but the cpp code doesn't compile. I added the
log in the attachment. But I don't think the error is from the binding, but
it's more probably that the error come from the rust code. 

I was unable to derive from default, because emit is not implemented for
interface::*Emitter. 

If you are interested in looking at the entire code, the code is hosted at
https://gitlab.com/ognarb/webnovel-manager unter the rust branch

Thank you in advance 

Carl

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

[kwin] [Bug 395179] Global menu getting outside of screen

2018-06-09 Thread QIN Yuhao
https://bugs.kde.org/show_bug.cgi?id=395179

--- Comment #2 from QIN Yuhao  ---
(In reply to Martin Flöser from comment #1)
> Is that on X11 or Wayland?

X11.

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

[konqueror] [Bug 395197] New: konqueror crashed when attempting to close the window

2018-06-09 Thread alexander
https://bugs.kde.org/show_bug.cgi?id=395197

Bug ID: 395197
   Summary: konqueror crashed when attempting to close the window
   Product: konqueror
   Version: unspecified
  Platform: Slackware Packages
OS: Linux
Status: UNCONFIRMED
  Keywords: drkonqi
  Severity: crash
  Priority: NOR
 Component: general
  Assignee: konq-b...@kde.org
  Reporter: terebilov...@gmail.com
  Target Milestone: ---

Application: konqueror (4.14.13)
KDE Platform Version: 4.14.32
Qt Version: 4.8.7
Operating System: Linux 4.4.132 x86_64
Distribution (Platform): Slackware Packages

-- Information about the crash:
- What I was doing when the application crashed:

Hello all.
I accidentally opened
https://slackbuilds.org/slackbuilds/14.2/libraries/qt5.tar.gz in new window.
And when I tried to close the window konqueror
crashed. Wen I restore previous session  he crashes again I try to close the
window.
Best Regards
Alexander

The crash can be reproduced every time.

-- Backtrace:
Application: Konqueror (konqueror), signal: Segmentation fault
Using host libthread_db library "/lib64/libthread_db.so.1".
[Current thread is 1 (Thread 0x7fd445d18780 (LWP 28933))]

Thread 4 (Thread 0x7fd3daf71700 (LWP 28953)):
#0  0x7fd444309718 in pthread_cond_timedwait@@GLIBC_2.3.2 () at
/lib64/libpthread.so.0
#1  0x7fd437fbd81a in WTF::ThreadCondition::timedWait(WTF::Mutex&, double)
() at /usr/lib64/qt/lib/libQtWebKit.so.4
#2  0x7fd437cbb3a5 in  () at /usr/lib64/qt/lib/libQtWebKit.so.4
#3  0x7fd437fbd216 in  () at /usr/lib64/qt/lib/libQtWebKit.so.4
#4  0x7fd444303684 in start_thread () at /lib64/libpthread.so.0
#5  0x7fd442848eed in clone () at /lib64/libc.so.6

Thread 3 (Thread 0x7fd3e1ef6700 (LWP 28938)):
#0  0x7fd4446d8e70 in  () at /usr/lib64/qt/lib/libQtCore.so.4
#1  0x7fd4446d77dc in  () at /usr/lib64/qt/lib/libQtCore.so.4
#2  0x7fd4446d7885 in  () at /usr/lib64/qt/lib/libQtCore.so.4
#3  0x7fd43ef5ff8d in g_main_context_prepare () at
/usr/lib64/libglib-2.0.so.0
#4  0x7fd43ef60893 in  () at /usr/lib64/libglib-2.0.so.0
#5  0x7fd43ef60a6c in g_main_context_iteration () at
/usr/lib64/libglib-2.0.so.0
#6  0x7fd4446d80ce in
QEventDispatcherGlib::processEvents(QFlags) ()
at /usr/lib64/qt/lib/libQtCore.so.4
#7  0x7fd4446a85d1 in
QEventLoop::processEvents(QFlags) () at
/usr/lib64/qt/lib/libQtCore.so.4
#8  0x7fd4446a88e5 in
QEventLoop::exec(QFlags) () at
/usr/lib64/qt/lib/libQtCore.so.4
#9  0x7fd4445a1c39 in QThread::exec() () at
/usr/lib64/qt/lib/libQtCore.so.4
#10 0x7fd4445a43bc in  () at /usr/lib64/qt/lib/libQtCore.so.4
#11 0x7fd444303684 in start_thread () at /lib64/libpthread.so.0
#12 0x7fd442848eed in clone () at /lib64/libc.so.6

Thread 2 (Thread 0x7fd425c12700 (LWP 28937)):
#0  0x7fd44430936f in pthread_cond_wait@@GLIBC_2.3.2 () at
/lib64/libpthread.so.0
#1  0x7fd437f8bd9d in  () at /usr/lib64/qt/lib/libQtWebKit.so.4
#2  0x7fd437f8bdf9 in  () at /usr/lib64/qt/lib/libQtWebKit.so.4
#3  0x7fd444303684 in start_thread () at /lib64/libpthread.so.0
#4  0x7fd442848eed in clone () at /lib64/libc.so.6

Thread 1 (Thread 0x7fd445d18780 (LWP 28933)):
[KCrash Handler]
#6  0x7fd4458093a0 in KXMLGUIFactory::removeClient(KXMLGUIClient*) () at
/usr/lib64/libkdeui.so.5
#7  0x7fd3e27fb9a4 in  () at /usr/lib64/kde4/arkpart.so
#8  0x7fd3e27fba29 in  () at /usr/lib64/kde4/arkpart.so
#9  0x7fd42d6de642 in  () at /usr/lib64/libkdeinit4_konqueror.so
#10 0x7fd42d6de929 in  () at /usr/lib64/libkdeinit4_konqueror.so
#11 0x7fd42d6ea255 in  () at /usr/lib64/libkdeinit4_konqueror.so
#12 0x7fd42d6ea353 in  () at /usr/lib64/libkdeinit4_konqueror.so
#13 0x7fd42d6ea3b9 in  () at /usr/lib64/libkdeinit4_konqueror.so
#14 0x7fd42d71c5b6 in  () at /usr/lib64/libkdeinit4_konqueror.so
#15 0x7fd42d71c8f9 in  () at /usr/lib64/libkdeinit4_konqueror.so
#16 0x7fd4446c2958 in QObject::event(QEvent*) () at
/usr/lib64/qt/lib/libQtCore.so.4
#17 0x7fd443852c0c in QWidget::event(QEvent*) () at
/usr/lib64/qt/lib/libQtGui.so.4
#18 0x7fd443c136f3 in QMainWindow::event(QEvent*) () at
/usr/lib64/qt/lib/libQtGui.so.4
#19 0x7fd4457ff909 in KXmlGuiWindow::event(QEvent*) () at
/usr/lib64/libkdeui.so.5
#20 0x7fd42d72fd8c in  () at /usr/lib64/libkdeinit4_konqueror.so
#21 0x7fd4437ff48c in QApplicationPrivate::notify_helper(QObject*, QEvent*)
() at /usr/lib64/qt/lib/libQtGui.so.4
#22 0x7fd443805f5c in QApplication::notify(QObject*, QEvent*) () at
/usr/lib64/qt/lib/libQtGui.so.4
#23 0x7fd4457088aa in KApplication::notify(QObject*, QEvent*) () at
/usr/lib64/libkdeui.so.5
#24 0x7fd4446a9c0d in QCoreApplication::notifyInternal(QObject*, QEvent*)
() at /usr/lib64/qt/lib/libQtCore.so.4
#25 0x7fd4446ace6e in QCoreApplicationPrivate::sendPostedEvents(QObject*,
int, QThreadData*) () at /usr/lib64/qt/lib/libQtCore.so.4
#26 

[krita] [Bug 394376] Unable to export or save-as png, gif, or jpg on 4.1.0-pre-alpha nightly build (git 65e24ca)

2018-06-09 Thread Alvin Wong
https://bugs.kde.org/show_bug.cgi?id=394376

--- Comment #16 from Alvin Wong  ---
(In reply to Alvin Wong from comment #15)
> (In reply to Boudewijn Rempt from comment #14)
> > Okay, I've made a Krita build with this patch. It can be downloaded from 
> > 
> > https://www.dropbox.com/s/yrovg6felfbw957/krita-qtbug394376.zip?dl=0
> > 
> > Debug symbols (probably not needed):
> > 
> > https://www.dropbox.com/s/yrovg6felfbw957/krita-qtbug394376.zip?dl=0
> > 
> > Please test it :-)
> 
> Also, please make a Process Monitor capture when testing so I can use it to
> verify the behaviour of Dropbox.

Opps sorry, Beatrice you can skip testing this build because I made a mistake
in the patch. I've updated the patch, please wait for a new build to test with.

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

[krita] [Bug 395194] New: undocked Dockers lost on orientation change (Wacom mobilestudio)

2018-06-09 Thread Brendan
https://bugs.kde.org/show_bug.cgi?id=395194

Bug ID: 395194
   Summary: undocked Dockers lost on orientation change (Wacom
mobilestudio)
   Product: krita
   Version: git master
  Platform: MS Windows
OS: MS Windows
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: Dockers
  Assignee: krita-bugs-n...@kde.org
  Reporter: bunf2...@apps.opensourcelaw.biz
  Target Milestone: ---

using git version 5345be7

I can't diagnose exactly what is happening, but undocked dockers disappear on
orientation change. 
Eg:
using a tablet 
start in landscape
open touch docker
make it undocked
change orientation (landscape-> portrait or vice versa)
docker disappears
change orientation again
docker reappears

The touch docker will disappear. 
Observations:
* when it disappears it can't be re-enabled through settings->dockers 
* can only be recovered by changing orientation back, docking it, then changing
orientation again

If there are multiple undocked dockers some, but not all, of them can survive
the orientation change.

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

[skrooge] [Bug 395196] Impossible to balance without checkbox visual

2018-06-09 Thread Alistair
https://bugs.kde.org/show_bug.cgi?id=395196

Alistair  changed:

   What|Removed |Added

 CC||agm.alistai...@mailnull.com

--- Comment #1 from Alistair  ---
Created attachment 113183
  --> https://bugs.kde.org/attachment.cgi?id=113183=edit
Desktop view of checkbox that has been selected/checked but not visible

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

[skrooge] [Bug 395196] New: Impossible to balance without checkbox visual

2018-06-09 Thread Alistair
https://bugs.kde.org/show_bug.cgi?id=395196

Bug ID: 395196
   Summary: Impossible to balance without checkbox visual
   Product: skrooge
   Version: Trunk from git
  Platform: Ubuntu Packages
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: guillaume.deb...@gmail.com
  Reporter: agm.alistai...@mailnull.com
CC: steph...@mankowski.fr
  Target Milestone: ---

Created attachment 113182
  --> https://bugs.kde.org/attachment.cgi?id=113182=edit
Skrooge Version and platform details

Ubuntu 1.3.3
When doing operation/balance/pointing under Elementary Loki, checkbox is not
showing shading or partial check (see screenshot) eg user checks box prior to
completed balancing, and checkbox does not change. It changes when balanced.
This makes the operation really difficult as user ends up with unbalanced which
can be only fixed by balancing without checks then checking all.

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

[skrooge] [Bug 395196] Impossible to balance without checkbox visual

2018-06-09 Thread Alistair
https://bugs.kde.org/show_bug.cgi?id=395196

Alistair  changed:

   What|Removed |Added

 Attachment #113183|Desktop view of checkbox|Desktop view of checkbox
description|that has been   |that has been
   |selected/checked but not|selected/pointed but not
   |visible |visible

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

[gwenview] [Bug 395198] New: Gwenview segfaults on .JPG files created by Pentax cameras

2018-06-09 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=395198

Bug ID: 395198
   Summary: Gwenview segfaults on .JPG files created by Pentax
cameras
   Product: gwenview
   Version: Other (add details in bug description)
  Platform: Neon Packages
OS: Linux
Status: UNCONFIRMED
  Severity: crash
  Priority: NOR
 Component: general
  Assignee: gwenview-bugs-n...@kde.org
  Reporter: jin...@tutanota.de
  Target Milestone: ---

Gwenview Version is 18.04.2

Description: As soon as Gwenview encounters (using browse feature or clicked
from Dolphin) a JPG created by a Pentax camera, it exits with a segfault.  No
other image files created by other cameras reproduce this behavior.  Problem
started either June 9 or 10 2018; no prior issues with 5 years of using
Gwenview.


dbg info output:

   Thread 1 "gwenview" received signal SIGSEGV, Segmentation fault.
   0x715b2b4f in Exiv2::ExifData::findKey(Exiv2::ExifKey const&)
const()
   from /usr/lib/x86_64-linux-gnu/libexiv2.so.26

Exiv2 culprit?  Identical to bug reported on CentOS forum 2 weeks ago:

https://bugs.centos.org/view.php?id=14882

Also identical to bug reported for EXIV2 last year:

http://dev.exiv2.org/issues/1305

JPG picture files containing Olympus & Nikon EXIF data are fine.  Only
Pentax-created (both K50 and Kr models) cause segfault.  Stripping EXIF data
via EXIFTOOL does not prevent segfault.  Renaming gwenviewrc and deleting
thumbnails does not prevent segfault.

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

[digikam] [Bug 395201] New: SSL broken in 5.9.0 AppImage bundle

2018-06-09 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=395201

Bug ID: 395201
   Summary: SSL broken in 5.9.0 AppImage bundle
   Product: digikam
   Version: 5.9.0
  Platform: Debian stable
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: Bundle-AppImage
  Assignee: digikam-bugs-n...@kde.org
  Reporter: jgoer...@complete.org
  Target Milestone: ---

While using the AppImage bundle from
https://download.kde.org/stable/digikam/digikam-5.9.0-01-x86-64.appimage, I was
unable to upload to Flickr due to SSL errors.

There would be a bunch of "cannot resolve" errors such as:

qt.network.ssl: QSslSocket: cannot resolve CRYPTO_num_locks

Followed by "Incompatible version of OpenSSL"

Some digging produced
https://github.com/Subsurface-divelog/subsurface/issues/779#issuecomment-342206044,
which contained this hint: "Something causes libcrypto.so.1.0.1e to be
searched, and since we do not bundle this version inside the AppImage, the
libcrypto from the base system gets loaded instead of the bundled version,
which leads to an OpenSSL version mismatch."

A workaround for this bug, which successfullly caused it to work for me, was to
run the appimage under Firejail, with this in my digikam.local:

blacklist /usr/lib/x86_64-linux-gnu/libssl*
blacklist /usr/lib/x86_64-linux-gnu/libcrypto*

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

[Falkon] [Bug 395112] Empty bar graph in Wayback Machine's calendar view

2018-06-09 Thread David Rosca
https://bugs.kde.org/show_bug.cgi?id=395112

David Rosca  changed:

   What|Removed |Added

 Resolution|--- |UPSTREAM
 Status|UNCONFIRMED |RESOLVED

--- Comment #2 from David Rosca  ---
It does use QtWebEngine, not QtWebKit.

Site compatibility issues are most of the times due to QtWebEngine/Chromium.

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

[dolphin] [Bug 378289] Dolphin crash (kdeinit5)

2018-06-09 Thread Julian Schraner
https://bugs.kde.org/show_bug.cgi?id=378289

Julian Schraner  changed:

   What|Removed |Added

 Status|NEEDSINFO   |RESOLVED
 Resolution|BACKTRACE   |FIXED

--- Comment #4 from Julian Schraner  ---
No response -> closing. Please reopen the report if the issue does persist with
newer versions of Dolphin. Thanks!

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

[dolphin] [Bug 307682] Dolphin doens't respect kiosk restrictions

2018-06-09 Thread Julian Schraner
https://bugs.kde.org/show_bug.cgi?id=307682

Julian Schraner  changed:

   What|Removed |Added

 Resolution|WAITINGFORINFO  |FIXED
 Status|NEEDSINFO   |RESOLVED

--- Comment #3 from Julian Schraner  ---
No response -> closing. This has probably been fixed, but please reopen the
report if you can still reproduce the behavior. Thanks!

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

[kwin] [Bug 395177] Wayland subsubmenus are not put in the correct place when the submenu has to be re positioned due to screen space

2018-06-09 Thread Martin Flöser
https://bugs.kde.org/show_bug.cgi?id=395177

Martin Flöser  changed:

   What|Removed |Added

 Resolution|--- |UPSTREAM
   See Also||https://bugreports.qt.io/br
   ||owse/QTBUG-51640
 Status|UNCONFIRMED |RESOLVED

--- Comment #1 from Martin Flöser  ---
This is unfortunately a bug in Qt. The submenus have position hints according
to the main window and not to the parent menu. See
https://bugreports.qt.io/browse/QTBUG-51640

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

[dolphin] [Bug 384298] strange behaviour with location bar with search tab opened

2018-06-09 Thread Julian Schraner
https://bugs.kde.org/show_bug.cgi?id=384298

Julian Schraner  changed:

   What|Removed |Added

 Resolution|--- |WAITINGFORINFO
 Status|UNCONFIRMED |NEEDSINFO
 CC||juliquad...@gmail.com

--- Comment #2 from Julian Schraner  ---
Hmm, I cannot reproduce this behavior despite your detailed steps... Can you
check if this issue does still exist for you with the newest version of Dolphin
(18.04.2)? Thanks!

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

[dolphin] [Bug 384298] strange behaviour with location bar with search tab opened

2018-06-09 Thread Xavier Corredor Llano
https://bugs.kde.org/show_bug.cgi?id=384298

Xavier Corredor Llano  changed:

   What|Removed |Added

 Resolution|WAITINGFORINFO  |FIXED
 Status|NEEDSINFO   |RESOLVED

--- Comment #3 from Xavier Corredor Llano  ---
Hi Julian Schraner,

Thanks for trying to reproduce this bug, I tried again with the last version of
Dolphin and this bug was fixed!! I will close it.

Regards
Xavier

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

[plasmashell] [Bug 353983] Turning off compositing breaks Plasma panel rendering

2018-06-09 Thread James Hemsing
https://bugs.kde.org/show_bug.cgi?id=353983

James Hemsing  changed:

   What|Removed |Added

 CC||jhems...@gmail.com

--- Comment #128 from James Hemsing  ---
Still affects me, and always has. Maybe I'll give this a try on my machine with
amdgpu to see if it happens just to see if it is an nvidia only thing and
report back.

Arch Linux
nvidia 396.24-1
kernel 4.16.9-1-ARCH
1080ti

For me, the taskbar does not update at all when in non-composited mode. When I
switch back to composited with Alt+shift+F12, it works. I like to use
non-composited when gaming because I am sure the compositing is not
interfering, and I get less stuttering and weird behavior when I alt-tab during
a game. The ability to do this is why I like Plasma.

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

[plasmashell] [Bug 364308] Strange behaviour with one rotated monitor on multimonitor configuration

2018-06-09 Thread Vik-Thor Rose
https://bugs.kde.org/show_bug.cgi?id=364308

Vik-Thor Rose  changed:

   What|Removed |Added

 CC||catt...@gmail.com

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

[kmail2] [Bug 395138] Unable to launch kmail on kde neon, akonadi crash

2018-06-09 Thread Pascalio
https://bugs.kde.org/show_bug.cgi?id=395138

Pascalio  changed:

   What|Removed |Added

 CC||pasca...@protonmail.com

--- Comment #1 from Pascalio  ---
I started having the same problem (with anything that requires akonadi) in
Kubuntu 17.10.

$ akonadictl start
Connecting to deprecated signal
QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
org.kde.pim.akonadiserver: database server stopped unexpectedly
org.kde.pim.akonadiserver: Database process exited unexpectedly during initial
connection!
org.kde.pim.akonadiserver: executable: "/usr/sbin/mysqld-akonadi"
org.kde.pim.akonadiserver: arguments:
("--defaults-file=/home/pascalio/.local/share/akonadi/mysql.conf",
"--datadir=/home/pascalio/.local/share/akonadi/db_data/",
"--socket=/tmp/akonadi-pascalio.OxIIAQ/mysql.socket",
"--pid-file=/tmp/akonadi-pascalio.OxIIAQ/mysql.pid")
org.kde.pim.akonadiserver: stdout: ""
org.kde.pim.akonadiserver: stderr: ""
org.kde.pim.akonadiserver: exit code: 2
org.kde.pim.akonadiserver: process error: "Unknown error"
mysqladmin: connect to server at 'localhost' failed
error: 'Can't connect to local MySQL server through socket
'/tmp/akonadi-pascalio.OxIIAQ/mysql.socket' (2)'
Check that mysqld is running and that the socket:
'/tmp/akonadi-pascalio.OxIIAQ/mysql.socket' exists!
org.kde.pim.akonadiserver: Failed to remove runtime connection config file
org.kde.pim.akonadicontrol: Application 'akonadiserver' exited normally...

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

[plasma4] [Bug 249242] Allow user to change how virtual desktops are ordered

2018-06-09 Thread Alf Mel
https://bugs.kde.org/show_bug.cgi?id=249242

--- Comment #3 from Alf Mel  ---
I appreciate the update. This feature has not been implemented in Plasma 5.
Instead of closing it, you should move it to Plasma 5 since it is still
applicable.

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

[plasmashell] [Bug 353983] Turning off compositing breaks Plasma panel rendering

2018-06-09 Thread James Hemsing
https://bugs.kde.org/show_bug.cgi?id=353983

James Hemsing  changed:

   What|Removed |Added

Version|5.8.0   |5.12.5

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

[digikam] [Bug 395199] Uploading large video files to flickr fails

2018-06-09 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=395199

caulier.gil...@gmail.com changed:

   What|Removed |Added

 CC||dinhthanhtrung1...@gmail.co
   ||m

--- Comment #1 from caulier.gil...@gmail.com ---
Thanh,

This patch is for you (:=)))...

Gilles

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

[digikam] [Bug 395199] Uploading large video files to flickr fails

2018-06-09 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=395199

caulier.gil...@gmail.com changed:

   What|Removed |Added

  Component|general |Export-Flickr
   Assignee|imaging-bugs-n...@kde.org   |digikam-bugs-n...@kde.org
 CC||caulier.gil...@gmail.com
Product|kipiplugins |digikam

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

[systemsettings] [Bug 395154] Unneeded confirm dialog when exiting Application Style->Window Decorations

2018-06-09 Thread mthw0
https://bugs.kde.org/show_bug.cgi?id=395154

mthw0  changed:

   What|Removed |Added

 CC||jari...@hotmail.com

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

[plasmashell] [Bug 395153] Links on desktop act just like regular files

2018-06-09 Thread mthw0
https://bugs.kde.org/show_bug.cgi?id=395153

mthw0  changed:

   What|Removed |Added

 CC||jari...@hotmail.com

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

[KEXI] [Bug 395189] Zero value is not displayed in integer columns

2018-06-09 Thread Jarosław Staniek
https://bugs.kde.org/show_bug.cgi?id=395189

--- Comment #1 from Jarosław Staniek  ---
Created attachment 113180
  --> https://bugs.kde.org/attachment.cgi?id=113180=edit
Test db

To test: open the table in data view. Expected: all cells (for
byte/short/int/bigint column) show zeros.
Error: all cells are empty.

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

[skrooge] [Bug 395196] Difficult to balance without pointed checkbox visible

2018-06-09 Thread Alistair
https://bugs.kde.org/show_bug.cgi?id=395196

Alistair  changed:

   What|Removed |Added

Summary|Impossible to balance   |Difficult to balance
   |without checkbox visual |without pointed checkbox
   ||visible

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

[digikam] [Bug 395200] New: ALSA Sound Broken in 5.9.0

2018-06-09 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=395200

Bug ID: 395200
   Summary: ALSA Sound Broken in 5.9.0
   Product: digikam
   Version: 5.9.0
  Platform: Debian stable
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: Bundle-AppImage
  Assignee: digikam-bugs-n...@kde.org
  Reporter: jgoer...@complete.org
  Target Milestone: ---

While using Digikam from
https://download.kde.org/stable/digikam/digikam-5.9.0-01-x86-64.appimage, I was
unable to get ALSA to play sound at all.

I got results similar to those listed at
http://digikam.1695700.n4.nabble.com/digiKam-users-Digikam-Cannot-access-file-share-alsa-alsa-conf-td4705967.html,
namely:

Cannot access file ././/share/alsa/alsa.conf 

No amount of ALSA tweaking would make it work.  I was eventually able to work
around this by running alsoft-conf on the host, removing ALSA from the
"Backends in use", and adding PulseAudio to that list.

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

[kwin] [Bug 395179] Global menu getting outside of screen

2018-06-09 Thread Martin Flöser
https://bugs.kde.org/show_bug.cgi?id=395179

--- Comment #1 from Martin Flöser  ---
Is that on X11 or Wayland?

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

[KEXI] [Bug 395189] Zero values are not displayed in integer columns

2018-06-09 Thread Jarosław Staniek
https://bugs.kde.org/show_bug.cgi?id=395189

Jarosław Staniek  changed:

   What|Removed |Added

Summary|Zero value is not displayed |Zero values are not
   |in integer columns  |displayed in integer
   ||columns

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

[KEXI] [Bug 394913] SQLite: Incorrect display of large unsigned int (>0x7FFFFFFF)

2018-06-09 Thread Jarosław Staniek
https://bugs.kde.org/show_bug.cgi?id=394913

Jarosław Staniek  changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

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

[frameworks-baloo] [Bug 395190] New: System froze up and I couldn't do anything

2018-06-09 Thread Charles German y
https://bugs.kde.org/show_bug.cgi?id=395190

Bug ID: 395190
   Summary: System froze up and I couldn't do anything
   Product: frameworks-baloo
   Version: 5.26.0
  Platform: openSUSE RPMs
OS: Linux
Status: UNCONFIRMED
  Keywords: drkonqi
  Severity: crash
  Priority: NOR
 Component: Baloo File Daemon
  Assignee: baloo-bugs-n...@kde.org
  Reporter: germ...@backspace.bz
  Target Milestone: ---

Application: baloo_file (5.26.0)

Qt Version: 5.6.1
Frameworks Version: 5.26.0
Operating System: Linux 4.4.104-18.44-default x86_64
Distribution: "openSUSE Leap 42.2"

-- Information about the crash:
- What I was doing when the application crashed:
Playing music on Amarok and connected to a remote desktop session using
xfreerdp in a multi monitor mode.

- Unusual behavior I noticed:

Music continued playing, but I couldn't interact with the desktop.  All my
applications froze.

-- Backtrace:
Application: Baloo File Indexing Daemon (baloo_file), signal: Segmentation
fault
Using host libthread_db library "/lib64/libthread_db.so.1".
[Current thread is 1 (Thread 0x7f3f6d70d880 (LWP 4304))]

Thread 3 (Thread 0x7f3f610b8700 (LWP 7767)):
#0  0x7f3f6b21e3fd in read () at /lib64/libc.so.6
#1  0x7f3f65573073 in  () at /usr/lib64/tls/libnvidia-tls.so.384.111
#2  0x7f3f67c45670 in  () at /usr/lib64/libglib-2.0.so.0
#3  0x7f3f67c04e49 in g_main_context_check () at
/usr/lib64/libglib-2.0.so.0
#4  0x7f3f67c052a8 in  () at /usr/lib64/libglib-2.0.so.0
#5  0x7f3f67c0542c in g_main_context_iteration () at
/usr/lib64/libglib-2.0.so.0
#6  0x7f3f6be3b33b in
QEventDispatcherGlib::processEvents(QFlags)
(this=0x7eff540008e0, flags=...) at kernel/qeventdispatcher_glib.cpp:419
#7  0x7f3f6bde8feb in
QEventLoop::exec(QFlags)
(this=this@entry=0x7f3f610b7c10, flags=..., flags@entry=...) at
kernel/qeventloop.cpp:204
#8  0x0041629e in Baloo::FileContentIndexer::run() (this=0x171dce0) at
/usr/src/debug/baloo-5.26.0/src/file/filecontentindexer.cpp:73
#9  0x7f3f6bc2581e in QThreadPoolThread::run() (this=0x199b1a0) at
thread/qthreadpool.cpp:93
#10 0x7f3f6bc289e9 in QThreadPrivate::start(void*) (arg=0x199b1a0) at
thread/qthread_unix.cpp:341
#11 0x7f3f6a251724 in start_thread () at /lib64/libpthread.so.0
#12 0x7f3f6b22ac1d in clone () at /lib64/libc.so.6

Thread 2 (Thread 0x7f3f61c18700 (LWP 4313)):
#0  0x7f3f6b21e3fd in read () at /lib64/libc.so.6
#1  0x7f3f65573073 in  () at /usr/lib64/tls/libnvidia-tls.so.384.111
#2  0x7f3f67c45670 in  () at /usr/lib64/libglib-2.0.so.0
#3  0x7f3f67c04e49 in g_main_context_check () at
/usr/lib64/libglib-2.0.so.0
#4  0x7f3f67c052a8 in  () at /usr/lib64/libglib-2.0.so.0
#5  0x7f3f67c0542c in g_main_context_iteration () at
/usr/lib64/libglib-2.0.so.0
#6  0x7f3f6be3b33b in
QEventDispatcherGlib::processEvents(QFlags)
(this=0x7f3f5c0008e0, flags=...) at kernel/qeventdispatcher_glib.cpp:419
#7  0x7f3f6bde8feb in
QEventLoop::exec(QFlags)
(this=this@entry=0x7f3f61c17d20, flags=..., flags@entry=...) at
kernel/qeventloop.cpp:204
#8  0x7f3f6bc23f1a in QThread::exec() (this=) at
thread/qthread.cpp:500
#9  0x7f3f6d000295 in  () at /usr/lib64/libQt5DBus.so.5
#10 0x7f3f6bc289e9 in QThreadPrivate::start(void*) (arg=0x7f3f6d269ce0) at
thread/qthread_unix.cpp:341
#11 0x7f3f6a251724 in start_thread () at /lib64/libpthread.so.0
#12 0x7f3f6b22ac1d in clone () at /lib64/libc.so.6

Thread 1 (Thread 0x7f3f6d70d880 (LWP 4304)):
[KCrash Handler]
#6  0x7f3f68f081f1 in mdb_get () at /usr/lib64/liblmdb-0.9.14.so
#7  0x7f3f6c4e284d in Baloo::IdTreeDB::get(unsigned long long) () at
/usr/lib64/libKF5BalooEngine.so.5
#8  0x7f3f6c4e0350 in Baloo::DocumentUrlDB::getId(unsigned long long,
QByteArray const&) const () at /usr/lib64/libKF5BalooEngine.so.5
#9  0x7f3f6c4f1721 in Baloo::Transaction::documentId(QByteArray const&)
const () at /usr/lib64/libKF5BalooEngine.so.5
#10 0x0041e5b3 in
Baloo::MetadataMover::removeMetadata(Baloo::Transaction*, QString const&)
(this=this@entry=0x171b1c0, tr=tr@entry=0x7ffd9a40c8e0, url=...) at
/usr/src/debug/baloo-5.26.0/src/file/metadatamover.cpp:74
#11 0x0041e66d in Baloo::MetadataMover::removeFileMetadata(QString
const&) (this=0x171b1c0, file=...) at
/usr/src/debug/baloo-5.26.0/src/file/metadatamover.cpp:66
#12 0x7f3f6be151d3 in QtPrivate::QSlotObjectBase::call(QObject*, void**)
(a=0x7ffd9a40ca50, r=0x171b1c0, this=0x171ed50) at
../../src/corelib/kernel/qobject_impl.h:124
#13 0x7f3f6be151d3 in QMetaObject::activate(QObject*, int, int, void**)
(sender=sender@entry=0x16f65e0, signalOffset=,
local_signal_index=local_signal_index@entry=3, argv=argv@entry=0x7ffd9a40ca50)
at kernel/qobject.cpp:3715
#14 0x7f3f6be15727 in QMetaObject::activate(QObject*, QMetaObject const*,
int, void**) (sender=sender@entry=0x16f65e0, m=m@entry=0x63a960
,

[kipiplugins] [Bug 395199] New: Uploading large video files to flickr fails

2018-06-09 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=395199

Bug ID: 395199
   Summary: Uploading large video files to flickr fails
   Product: kipiplugins
   Version: 5.9.0
  Platform: Other
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: imaging-bugs-n...@kde.org
  Reporter: jgoer...@complete.org
  Target Milestone: ---

Created attachment 113184
  --> https://bugs.kde.org/attachment.cgi?id=113184=edit
Patch to correct video uploads to Flickr

Flickr has separate size limits for photos and videos.  This is using
the photo size limit (200MB right now) for all uploads, including
videos, which have a 1GB limit on Flickr.

The attached patch uses the video limit for all uploads.  This at least
avoids artificially blocking some uploads; an API error would result on
photos over 200MB, but I think this is both acceptable and incredibly
rare.

I initially filed this to Debian as
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=874675 and it has been
accepted there.  I have tested this 1-line patch and it is working perfectly.

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

[kile] [Bug 395193] New: Search in preview pane

2018-06-09 Thread Victor Porton
https://bugs.kde.org/show_bug.cgi?id=395193

Bug ID: 395193
   Summary: Search in preview pane
   Product: kile
   Version: 2.9.92
  Platform: Debian testing
OS: Linux
Status: UNCONFIRMED
  Severity: wishlist
  Priority: NOR
 Component: general
  Assignee: michel.lud...@kdemail.net
  Reporter: por...@narod.ru
  Target Milestone: ---

Pressing Ctrl+F in preview pane should start searching in the PDF (not in the
LaTeX pane).

Also add "Search..." into the preview pane popup menu.

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

[dolphin] [Bug 394507] Dolphin Crash Message Immediately after I close the Application

2018-06-09 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=394507

Elvis Angelaccio  changed:

   What|Removed |Added

 CC||danielwohl...@gmx.de

--- Comment #17 from Elvis Angelaccio  ---
*** Bug 395128 has been marked as a duplicate of this bug. ***

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

[dolphin] [Bug 395128] Dolphin/Plasma: Crash while deleting muliple files from Plasma-Desktop

2018-06-09 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=395128

Elvis Angelaccio  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #1 from Elvis Angelaccio  ---


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

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

[plasmashell] [Bug 336374] Panels can overlap each other

2018-06-09 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=336374

David Edmundson  changed:

   What|Removed |Added

 CC||criss...@gmx.de

--- Comment #4 from David Edmundson  ---
*** Bug 289998 has been marked as a duplicate of this bug. ***

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

[plasmashell] [Bug 289998] panel does overlap other panel on same edge

2018-06-09 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=289998

David Edmundson  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 CC||k...@davidedmundson.co.uk
 Status|REOPENED|RESOLVED

--- Comment #13 from David Edmundson  ---


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

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

[gwenview] [Bug 395178] New: Browsing photos with preview and next not displaying photos in order

2018-06-09 Thread CnZhx
https://bugs.kde.org/show_bug.cgi?id=395178

Bug ID: 395178
   Summary: Browsing photos with preview and next not displaying
photos in order
   Product: gwenview
   Version: 18.04.1
  Platform: Other
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: gwenview-bugs-n...@kde.org
  Reporter: z...@cnzhx.net
  Target Milestone: ---

When browsing photos in a folder, all the images have sequential ordered names
such as img_001, img_002, etc., the Previous (left arrow) and Next (right
arrow) will give the sequential previous or next photo.

However, when the names of the files are not so obvious, the Previous (left
arrow) and Next (right arrow) no longer gives the sequential previous or next
photo. I think this bug was introduced with 18.04. This behaviour is a bug to
me and Gwenview did not behave like this before.


For example, for following photos in a foler,
```
img_C001H001S000101.png
img_C001H001S000102.png
img_C001H001S000103.png
img_C001H001S000104.png
img_C001H001S000105.png
img_C001H001S000106.png
img_C001H001S000107.png
img_C001H001S000108.png
img_C001H001S000109.png
```

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

[plasmashell] [Bug 258167] adding tabbing, stacking, grid or floating group to grouping panel not possible

2018-06-09 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=258167

David Edmundson  changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 CC||k...@davidedmundson.co.uk
 Resolution|--- |WONTFIX

--- Comment #13 from David Edmundson  ---
I'm not adding that

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

[plasmashell] [Bug 251284] background of text of desktop icons cant be specified

2018-06-09 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=251284

David Edmundson  changed:

   What|Removed |Added

 CC||k...@davidedmundson.co.uk
   Assignee|se...@kde.org   |h...@kde.org
  Component|Desktop Containment |Folder

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

[plasmashell] [Bug 165792] Allow multirow panels

2018-06-09 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=165792

David Edmundson  changed:

   What|Removed |Added

 Resolution|--- |WONTFIX
 CC||k...@davidedmundson.co.uk
 Status|REOPENED|RESOLVED

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

[dolphin] [Bug 384927] Cropped service icons

2018-06-09 Thread Julian Schraner
https://bugs.kde.org/show_bug.cgi?id=384927

Julian Schraner  changed:

   What|Removed |Added

 Resolution|--- |WAITINGFORINFO
 Status|UNCONFIRMED |NEEDSINFO
 CC||juliquad...@gmail.com

--- Comment #1 from Julian Schraner  ---
Could you check if this still happens with a newer version of Dolphin? Thanks!

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

[dolphin] [Bug 384771] Error when move a file from my home dir, to a windows partition

2018-06-09 Thread Julian Schraner
https://bugs.kde.org/show_bug.cgi?id=384771

Julian Schraner  changed:

   What|Removed |Added

 Resolution|--- |WAITINGFORINFO
 Status|UNCONFIRMED |NEEDSINFO
 CC||juliquad...@gmail.com

--- Comment #1 from Julian Schraner  ---
The version of Dolphin you are using is very old. Please update Dolphin & and
try to reproduce the crash if possible. Thanks!

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

[dolphin] [Bug 385428] Titlebar button does not show

2018-06-09 Thread Julian Schraner
https://bugs.kde.org/show_bug.cgi?id=385428

Julian Schraner  changed:

   What|Removed |Added

 CC||juliquad...@gmail.com

--- Comment #4 from Julian Schraner  ---
If I understand this report correctly, the problem is the following:
If you add the global menu widget into the window header and then take them
back out, Dolphin will not automatically show the menubar again. Is this
correct? If yes, then I can indeed still reproduce this behavior with Dolphin
18.04.2.

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

[plasmashell] [Bug 395182] New: Timer widget looks too small when docked into a panel

2018-06-09 Thread Adel Q
https://bugs.kde.org/show_bug.cgi?id=395182

Bug ID: 395182
   Summary: Timer widget looks too small when docked into a panel
   Product: plasmashell
   Version: 5.12.5
  Platform: Other
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: k...@davidedmundson.co.uk
  Reporter: abq...@gmail.com
CC: plasma-b...@kde.org
  Target Milestone: 1.0

Created attachment 113174
  --> https://bugs.kde.org/attachment.cgi?id=113174=edit
Screenshot of small timer on left from Plasma Shell 5.12.5

The font size for the timer when placed in a panel is extremely small due to
vertical padding in the widget. 

Reproducible: Always

Steps to reproduce:
1. Add the timer widget to a panel. Font size is extremely small due to
padding.

Expected result:
The font of the timer should be readable and roughly fit the height of the
panel, like the Digital Clock widget.

A similar bug was reported in plasma4, but in plasmashell this bug is
reproducible without needing a reboot:
https://bugs.kde.org/show_bug.cgi?id=321507


Distro: Arch Linux (up to date)
Qt Version: 5.11.0
KDE Plasma Version: 5.12.5
KDE Frameworks Version: 5.46.0

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

[krita] [Bug 347920] Edge sharpening for circle brush tip (watercolor-like effect)

2018-06-09 Thread Boudewijn Rempt
https://bugs.kde.org/show_bug.cgi?id=347920

Boudewijn Rempt  changed:

   What|Removed |Added

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

--- Comment #6 from Boudewijn Rempt  ---
This is available now, in the krita 4 brush kit.

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

[gwenview] [Bug 395185] New: When done editing path in path bar, automatically switch back to breadcrumb mode

2018-06-09 Thread DrSlony
https://bugs.kde.org/show_bug.cgi?id=395185

Bug ID: 395185
   Summary: When done editing path in path bar, automatically
switch back to breadcrumb mode
   Product: gwenview
   Version: 18.04.1
  Platform: Other
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: gwenview-bugs-n...@kde.org
  Reporter: b...@londonlight.org
  Target Milestone: ---

When done editing the path in the path bar, when the user hits enter Gwenview
should switch the path bar from editing more to breadcrumb mode.

Refer to Dolphin for an example:
1. Hit Ctrl+L, focus is shifted to the path bar which is now editable.
2. Type e.g. "~/photos" and hit enter.
3. You are taken to ~/photos and the path bar switches from editable mode to
breadcrumb mode.

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

[gwenview] [Bug 395185] When done editing path in path bar, automatically switch back to breadcrumb mode

2018-06-09 Thread DrSlony
https://bugs.kde.org/show_bug.cgi?id=395185

DrSlony  changed:

   What|Removed |Added

 CC||b...@londonlight.org

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

[dolphin] [Bug 384833] dolphin kamera-kio can no longer read my camera: Nikon D810

2018-06-09 Thread Julian Schraner
https://bugs.kde.org/show_bug.cgi?id=384833

Julian Schraner  changed:

   What|Removed |Added

 Resolution|WAITINGFORINFO  |FIXED
 Status|NEEDSINFO   |RESOLVED

--- Comment #3 from Julian Schraner  ---
Great, thanks for the quick response. I'll close this report as the problem has
since been resolved.

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

[dolphin] [Bug 384833] dolphin kamera-kio can no longer read my camera: Nikon D810

2018-06-09 Thread Allan Johnstone
https://bugs.kde.org/show_bug.cgi?id=384833

--- Comment #2 from Allan Johnstone  ---
I am no longer using Dolphin 17.08.1, but rather 18.04.01, which is working
well with my camera. Thanks.

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

[dolphin] [Bug 386016] open terminal menu command/shift f4 don't open the terminal on ubuntu 17.10

2018-06-09 Thread Julian Schraner
https://bugs.kde.org/show_bug.cgi?id=386016

Julian Schraner  changed:

   What|Removed |Added

 CC||juliquad...@gmail.com
 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #4 from Julian Schraner  ---
This is a duplicate of bug 371822, which has luckily since been fixed :)
Closing now.

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

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

[plasmashell] [Bug 347633] add option to remove history

2018-06-09 Thread Tristan Miller
https://bugs.kde.org/show_bug.cgi?id=347633

--- Comment #4 from Tristan Miller  ---
(In reply to David Edmundson from comment #3)
> Right now Kickoff alway remembers the applications it last launched.
> You can.Right click: Forget all.

I think the point of this feature request was the ability to have Kickoff never
remember history.  This is important for privacy reasons.  Doesn't "Forget all"
simply clear the existing history, but then continue to record it?

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

[dolphin] [Bug 384833] dolphin kamera-kio can no longer read my camera: Nikon D810

2018-06-09 Thread Julian Schraner
https://bugs.kde.org/show_bug.cgi?id=384833

Julian Schraner  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDSINFO
 CC||juliquad...@gmail.com
 Resolution|--- |WAITINGFORINFO

--- Comment #1 from Julian Schraner  ---
Hello and sorry that no developer initially responded to your bug report. Can
you try to reproduce this issue again with the newest version of Dolphin
(18.04)? That 'd be great, thanks!

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

[dolphin] [Bug 385588] Sorting and groupping items by rating, tags, comments causes invalid selection when navigating back to folder

2018-06-09 Thread Julian Schraner
https://bugs.kde.org/show_bug.cgi?id=385588

Julian Schraner  changed:

   What|Removed |Added

 CC||juliquad...@gmail.com
 Ever confirmed|0   |1
 Status|UNCONFIRMED |CONFIRMED

--- Comment #3 from Julian Schraner  ---
Thanks for reporting this bug, I can still reproduce the behavior with Dolphin
18.04.2 -> confirmed. Sebastian, if you already found time to look into this
issue it'd be great if you could share your findings :)

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

[plasmashell] [Bug 395180] New: Crash after closing nextcloud client

2018-06-09 Thread Herbert Graeber
https://bugs.kde.org/show_bug.cgi?id=395180

Bug ID: 395180
   Summary: Crash after closing nextcloud client
   Product: plasmashell
   Version: 5.12.5
  Platform: openSUSE RPMs
OS: Linux
Status: UNCONFIRMED
  Keywords: drkonqi
  Severity: crash
  Priority: NOR
 Component: general
  Assignee: k...@davidedmundson.co.uk
  Reporter: herb...@graeber-clan.de
CC: plasma-b...@kde.org
  Target Milestone: 1.0

Application: plasmashell (5.12.5)

Qt Version: 5.11.0
Frameworks Version: 5.46.0
Operating System: Linux 4.16.12-2-default x86_64
Distribution: "openSUSE Tumbleweed"

-- Information about the crash:
- What I was doing when the application crashed:
Directly after logon the nextcloud client opens. I presed the close button and
plamashell crashed.

The crash does not seem to be reproducible.

-- Backtrace:
Application: Plasma (plasmashell), signal: Segmentation fault
Using host libthread_db library "/lib64/libthread_db.so.1".
[Current thread is 1 (Thread 0x7f7040add880 (LWP 2425))]

Thread 13 (Thread 0x7f6f56ffd700 (LWP 2871)):
#0  0x7f703972756c in pthread_cond_wait@@GLIBC_2.3.2 () at
/lib64/libpthread.so.0
#1  0x7f703a57c8cb in QWaitCondition::wait(QMutex*, unsigned long) () at
/usr/lib64/libQt5Core.so.5
#2  0x7f703e313588 in  () at /usr/lib64/libQt5Quick.so.5
#3  0x7f703e31396a in  () at /usr/lib64/libQt5Quick.so.5
#4  0x7f703a57bb58 in  () at /usr/lib64/libQt5Core.so.5
#5  0x7f703972159b in start_thread () at /lib64/libpthread.so.0
#6  0x7f7039e74a1f in clone () at /lib64/libc.so.6

Thread 12 (Thread 0x7f6f577fe700 (LWP 2870)):
#0  0x7f703972756c in pthread_cond_wait@@GLIBC_2.3.2 () at
/lib64/libpthread.so.0
#1  0x7f703a57c8cb in QWaitCondition::wait(QMutex*, unsigned long) () at
/usr/lib64/libQt5Core.so.5
#2  0x7f703e313588 in  () at /usr/lib64/libQt5Quick.so.5
#3  0x7f703e31396a in  () at /usr/lib64/libQt5Quick.so.5
#4  0x7f703a57bb58 in  () at /usr/lib64/libQt5Core.so.5
#5  0x7f703972159b in start_thread () at /lib64/libpthread.so.0
#6  0x7f7039e74a1f in clone () at /lib64/libc.so.6

Thread 11 (Thread 0x7f6f57fff700 (LWP 2829)):
#0  0x7f703972756c in pthread_cond_wait@@GLIBC_2.3.2 () at
/lib64/libpthread.so.0
#1  0x7f703a57c8cb in QWaitCondition::wait(QMutex*, unsigned long) () at
/usr/lib64/libQt5Core.so.5
#2  0x7f703e313588 in  () at /usr/lib64/libQt5Quick.so.5
#3  0x7f703e31396a in  () at /usr/lib64/libQt5Quick.so.5
#4  0x7f703a57bb58 in  () at /usr/lib64/libQt5Core.so.5
#5  0x7f703972159b in start_thread () at /lib64/libpthread.so.0
#6  0x7f7039e74a1f in clone () at /lib64/libc.so.6

Thread 10 (Thread 0x7f6f6635a700 (LWP 2815)):
#0  0x7f703972756c in pthread_cond_wait@@GLIBC_2.3.2 () at
/lib64/libpthread.so.0
#1  0x7f703a57c8cb in QWaitCondition::wait(QMutex*, unsigned long) () at
/usr/lib64/libQt5Core.so.5
#2  0x7f703e313588 in  () at /usr/lib64/libQt5Quick.so.5
#3  0x7f703e31396a in  () at /usr/lib64/libQt5Quick.so.5
#4  0x7f703a57bb58 in  () at /usr/lib64/libQt5Core.so.5
#5  0x7f703972159b in start_thread () at /lib64/libpthread.so.0
#6  0x7f7039e74a1f in clone () at /lib64/libc.so.6

Thread 9 (Thread 0x7f6f6e83b700 (LWP 2736)):
#0  0x7f70344b7e44 in g_mutex_unlock () at /usr/lib64/libglib-2.0.so.0
#1  0x7f7034471978 in g_main_context_prepare () at
/usr/lib64/libglib-2.0.so.0
#2  0x7f703447235b in  () at /usr/lib64/libglib-2.0.so.0
#3  0x7f703447253c in g_main_context_iteration () at
/usr/lib64/libglib-2.0.so.0
#4  0x7f703a78e88b in
QEventDispatcherGlib::processEvents(QFlags) ()
at /usr/lib64/libQt5Core.so.5
#5  0x7f703a73614a in
QEventLoop::exec(QFlags) () at
/usr/lib64/libQt5Core.so.5
#6  0x7f703a57136a in QThread::exec() () at /usr/lib64/libQt5Core.so.5
#7  0x7f6f7110b887 in KCupsConnection::run() () at
/usr/lib64/libkcupslib.so
#8  0x7f703a57bb58 in  () at /usr/lib64/libQt5Core.so.5
#9  0x7f703972159b in start_thread () at /lib64/libpthread.so.0
#10 0x7f7039e74a1f in clone () at /lib64/libc.so.6

Thread 8 (Thread 0x7f6f86fc7700 (LWP 2566)):
#0  0x7f703972756c in pthread_cond_wait@@GLIBC_2.3.2 () at
/lib64/libpthread.so.0
#1  0x7f703a57c8cb in QWaitCondition::wait(QMutex*, unsigned long) () at
/usr/lib64/libQt5Core.so.5
#2  0x7f703e313588 in  () at /usr/lib64/libQt5Quick.so.5
#3  0x7f703e31396a in  () at /usr/lib64/libQt5Quick.so.5
#4  0x7f703a57bb58 in  () at /usr/lib64/libQt5Core.so.5
#5  0x7f703972159b in start_thread () at /lib64/libpthread.so.0
#6  0x7f7039e74a1f in clone () at /lib64/libc.so.6

Thread 7 (Thread 0x7f6f877c8700 (LWP 2565)):
#0  0x7f7039e65bf4 in read () at /lib64/libc.so.6
#1  0x7f70344b6ab0 in  () at /usr/lib64/libglib-2.0.so.0
#2  0x7f7034471f17 in g_main_context_check () at
/usr/lib64/libglib-2.0.so.0
#3  0x7f70344723d0 in  () at 

[kdenlive] [Bug 395183] New: recording in clip monitor always crashes kdenlive

2018-06-09 Thread Adam Spiers
https://bugs.kde.org/show_bug.cgi?id=395183

Bug ID: 395183
   Summary: recording in clip monitor always crashes kdenlive
   Product: kdenlive
   Version: 18.04.1
  Platform: Other
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: User Interface
  Assignee: j...@kdenlive.org
  Reporter: kde-b...@adamspiers.org
  Target Milestone: ---

How to reproduce:

1. start kdenlive (already configured to record video from my USB webcam)
2. click the + icon (Show Record Control) in the clip monitor
3. click the red circle icon to start recording video / audio
4. click the red circle icon to stop recording video / audio

This crashes kdenlive 100% of the time for me.

GNU gdb (GDB; openSUSE Leap 42.3) 8.0.1
Copyright (C) 2017 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later 
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.  Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-suse-linux".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
.
Find the GDB manual and other documentation resources online at:
.
For help, type "help".
Type "apropos word" to search for commands related to "word"...
[New LWP 19827]
[New LWP 20006]
[New LWP 19816]
[New LWP 19879]
[New LWP 19869]
[New LWP 19694]
[New LWP 20201]
[New LWP 20196]
[New LWP 20690]
[New LWP 20200]
[New LWP 20205]
[New LWP 20693]
[New LWP 20208]
[New LWP 20204]
[New LWP 20687]
[New LWP 20210]
[New LWP 20689]
[New LWP 20691]
[New LWP 20692]
[New LWP 19868]
[New LWP 20004]
[New LWP 20688]
[New LWP 20203]
[New LWP 20199]
[New LWP 20209]
[New LWP 20202]
[New LWP 20207]
[New LWP 19768]
[New LWP 20198]
[New LWP 19828]
[New LWP 20206]
[New LWP 20694]
Reading symbols from /usr/bin/kdenlive...Reading symbols from
/usr/lib/debug/usr/bin/kdenlive.debug...done.
done.

warning: Ignoring non-absolute filename: 
Missing separate debuginfo for linux-vdso.so.1
Try: zypper install -C
"debuginfo(build-id)=9fdd98d41f5e21c31819b288fcf042ce79c5ab4e"
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib64/libthread_db.so.1".
Core was generated by `kdenlive'.
Program terminated with signal SIGTRAP, Trace/breakpoint trap.
#0  g_logv (log_domain=0x7f9d08fa5d38 "GLib-GIO", log_level=G_LOG_LEVEL_ERROR,
format=, args=args@entry=0x7f9cf799dab8) at gmessages.c:1085
1085gmessages.c: No such file or directory.
[Current thread is 1 (Thread 0x7f9cf799f700 (LWP 19827))]
Missing separate debuginfos, use: zypper install
libgpg-error0-debuginfo-1.31-105.1.x86_64
(gdb) bt
#0  0x7f9d16d60713 in g_logv (log_domain=0x7f9d08fa5d38 "GLib-GIO",
log_level=G_LOG_LEVEL_ERROR, format=,
args=args@entry=0x7f9cf799dab8)
at gmessages.c:1085
#1  0x7f9d16d60882 in g_log (log_domain=log_domain@entry=0x7f9d08fa5d38
"GLib-GIO", log_level=log_level@entry=G_LOG_LEVEL_ERROR,
format=format@entry=0x7f9d08fd524e "inotify read(): %s") at gmessages.c:1119
#2  0x7f9d08f9fac7 in ik_source_read_some_events
(buffer=buffer@entry=0x7f9cf799dbf0 "", buffer_len=buffer_len@entry=4096,
iks=)
at inotify-kernel.c:156
#3  0x7f9d08f9fb78 in ik_source_read_all_the_events (buffer_len=4096,
length_out=, buffer=0x7f9cf799dbf0 "", iks=0x17dedc0)
at inotify-kernel.c:172
#4  0x7f9d08f9fb78 in ik_source_dispatch (source=0x17dedc0,
func=0x7f9d08fa0840 , user_data=) at
inotify-kernel.c:247
#5  0x7f9d16d5a015 in g_main_dispatch (context=0x17d2a30) at gmain.c:3154
#6  0x7f9d16d5a015 in g_main_context_dispatch
(context=context@entry=0x17d2a30) at gmain.c:3769
#7  0x7f9d16d5a388 in g_main_context_iterate
(context=context@entry=0x17d2a30, block=block@entry=1,
dispatch=dispatch@entry=1, self=)
at gmain.c:3840
#8  0x7f9d16d5a42c in g_main_context_iteration (context=0x17d2a30,
may_block=may_block@entry=1) at gmain.c:3901
#9  0x7f9d16d5a469 in glib_worker_main (data=) at
gmain.c:5672
#10 0x7f9d16d7ea85 in g_thread_proxy (data=0x170c370) at gthread.c:780
#11 0x7f9d18d17724 in start_thread (arg=0x7f9cf799f700) at
pthread_create.c:457
#12 0x7f9d1a52ee8d in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:109
(gdb) info threads
  Id   Target Id Frame
* 1Thread 0x7f9cf799f700 (LWP 19827) g_logv (log_domain=0x7f9d08fa5d38
"GLib-GIO", log_level=G_LOG_LEVEL_ERROR, format=,
args=args@entry=0x7f9cf799dab8) at gmessages.c:1085
  2Thread 0x7f9cb7ffe700 (LWP 20006) 0x7f9d1a52630d in poll () at
../sysdeps/unix/syscall-template.S:84
  3Thread 0x7f9d0253e700 (LWP 19816) 0x7f9d1a52630d in poll () at
../sysdeps/unix/syscall-template.S:84
  4Thread 0x7f9cc7fff700 (LWP 19879) 0x7f9d1a52630d in poll () at

[gwenview] [Bug 395184] New: Focus path bar on Ctrl+L

2018-06-09 Thread DrSlony
https://bugs.kde.org/show_bug.cgi?id=395184

Bug ID: 395184
   Summary: Focus path bar on Ctrl+L
   Product: gwenview
   Version: 18.04.1
  Platform: Other
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: gwenview-bugs-n...@kde.org
  Reporter: b...@londonlight.org
  Target Milestone: ---

Ctrl+l is a standard shortcut for focusing the address/path bar. Gwenview has a
path bar, but ctrl+l does not focus it. Please add such a shortcut.

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

[gwenview] [Bug 395184] Focus path bar on Ctrl+L

2018-06-09 Thread DrSlony
https://bugs.kde.org/show_bug.cgi?id=395184

DrSlony  changed:

   What|Removed |Added

 CC||b...@londonlight.org

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

[knotes] [Bug 358973] Knotes do not drag, they only drop at the location of the released mouse-button

2018-06-09 Thread Fabio Coatti
https://bugs.kde.org/show_bug.cgi?id=358973

--- Comment #17 from Fabio Coatti  ---
(In reply to Robert Hoffmann from comment #15)
> Fixed jumping, see https://phabricator.kde.org/D13401

Tested a backport to 18.04.2,works as expected. Many thanks!!

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

[krita] [Bug 395186] Document.selection() returns None when selection created by Action is still processing.

2018-06-09 Thread n-pigeon
https://bugs.kde.org/show_bug.cgi?id=395186

--- Comment #1 from n-pigeon  ---
I think that action is not able to create selection in time and doc.selection()
is not aware that Image is middle of operation and is not waiting for it to
finish.

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

[dolphin] [Bug 395078] Crash when moving files from one disk to another

2018-06-09 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=395078

Elvis Angelaccio  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #2 from Elvis Angelaccio  ---


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

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

[dolphin] [Bug 368287] Dolphin crashed while moving files

2018-06-09 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=368287

Elvis Angelaccio  changed:

   What|Removed |Added

 CC||a.skemb...@gmail.com

--- Comment #10 from Elvis Angelaccio  ---
*** Bug 395078 has been marked as a duplicate of this bug. ***

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

[dolphin] [Bug 395089] Dolphin crashed when moving file from USB to SSD

2018-06-09 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=395089

--- Comment #2 from Elvis Angelaccio  ---
@Julian: we already had bug #368287, let's continue to use that one for
duplicates.

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

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

[dolphin] [Bug 368287] Dolphin crashed while moving files

2018-06-09 Thread Elvis Angelaccio
https://bugs.kde.org/show_bug.cgi?id=368287

Elvis Angelaccio  changed:

   What|Removed |Added

 CC||s...@mauch.me

--- Comment #9 from Elvis Angelaccio  ---
*** Bug 395089 has been marked as a duplicate of this bug. ***

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

[frameworks-kwidgetsaddons] [Bug 395169] Chars not shown in left panel

2018-06-09 Thread Christoph Feck
https://bugs.kde.org/show_bug.cgi?id=395169

Christoph Feck  changed:

   What|Removed |Added

Product|kcharselect |frameworks-kwidgetsaddons
  Latest Commit||https://commits.kde.org/kwi
   ||dgetsaddons/43d23824a94cb64
   ||6ae9691a56262c8ec680868a3
   Version Fixed In||5.47.0
 CC||kdelibs-b...@kde.org
 Resolution|--- |FIXED
  Component|general |general
Version|1.13|5.46.0
 Status|UNCONFIRMED |RESOLVED

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

[Falkon] [Bug 395112] Empty bar graph in Wayback Machine's calendar view

2018-06-09 Thread Theo
https://bugs.kde.org/show_bug.cgi?id=395112

--- Comment #1 from Theo  ---
Funny story: after an update (including libQt5WebKit5 5.212~alpha2) this
problem is gone. (Unrelated: I'm also pleasantly surprised that there is no
longer a QtWebEngineProcess for every unloaded restored tab when Falkon loads
the last session on start. This saves a lot of memory when there are many
tabs.)

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

[KEXI] [Bug 394913] Incorrect display of large unsigned int (>0x7FFFFFFF)

2018-06-09 Thread Jarosław Staniek
https://bugs.kde.org/show_bug.cgi?id=394913

Jarosław Staniek  changed:

   What|Removed |Added

Summary|incorrect display of large  |Incorrect display of large
   |unsigned int|unsigned int (>0x7FFF)

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

[dolphin] [Bug 395187] New: Dolphin crashed after selecting non-existing removable device in left panel

2018-06-09 Thread Alexander Mentyu
https://bugs.kde.org/show_bug.cgi?id=395187

Bug ID: 395187
   Summary: Dolphin crashed after selecting non-existing removable
device in left panel
   Product: dolphin
   Version: unspecified
  Platform: Archlinux Packages
OS: Linux
Status: UNCONFIRMED
  Keywords: drkonqi
  Severity: crash
  Priority: NOR
 Component: general
  Assignee: dolphin-bugs-n...@kde.org
  Reporter: notux...@gmail.com
CC: elvis.angelac...@kde.org
  Target Milestone: ---

Application: dolphin (18.04.2)

Qt Version: 5.11.0
Frameworks Version: 5.46.0
Operating System: Linux 4.17.0-2-MANJARO x86_64
Distribution: "Netrunner Rolling"

-- Information about the crash:
- What I was doing when the application crashed:
Not quite remember what changes were in removable devices prior to selecting
one of non-existing? in left panel

-- Backtrace:
Application: Dolphin (dolphin), signal: Segmentation fault
Using host libthread_db library "/usr/lib/libthread_db.so.1".
[Current thread is 1 (Thread 0x7fedd4826800 (LWP 3556))]

Thread 5 (Thread 0x7feda206b700 (LWP 3561)):
#0  0x7fedd40e6ea9 in poll () at /usr/lib/libc.so.6
#1  0x7fedc6a58523 in  () at /usr/lib/libglib-2.0.so.0
#2  0x7fedc6a5863e in g_main_context_iteration () at
/usr/lib/libglib-2.0.so.0
#3  0x7fedce2ace64 in
QEventDispatcherGlib::processEvents(QFlags) ()
at /usr/lib/libQt5Core.so.5
#4  0x7fedce25885c in
QEventLoop::exec(QFlags) () at
/usr/lib/libQt5Core.so.5
#5  0x7fedce0a1ac9 in QThread::exec() () at /usr/lib/libQt5Core.so.5
#6  0x7fedce0abb95 in  () at /usr/lib/libQt5Core.so.5
#7  0x7fedc90e1075 in start_thread () at /usr/lib/libpthread.so.0
#8  0x7fedd40f153f in clone () at /usr/lib/libc.so.6

Thread 4 (Thread 0x7fedaf02b700 (LWP 3560)):
#0  0x7fedc90e6ffc in pthread_cond_wait@@GLIBC_2.3.2 () at
/usr/lib/libpthread.so.0
#1  0x7fedaf68e0a4 in  () at /usr/lib/dri/i965_dri.so
#2  0x7fedaf68dd98 in  () at /usr/lib/dri/i965_dri.so
#3  0x7fedc90e1075 in start_thread () at /usr/lib/libpthread.so.0
#4  0x7fedd40f153f in clone () at /usr/lib/libc.so.6

Thread 3 (Thread 0x7fedb6a9d700 (LWP 3559)):
#0  0x7fedd40e6ea9 in poll () at /usr/lib/libc.so.6
#1  0x7fedc6a58523 in  () at /usr/lib/libglib-2.0.so.0
#2  0x7fedc6a5863e in g_main_context_iteration () at
/usr/lib/libglib-2.0.so.0
#3  0x7fedce2ace64 in
QEventDispatcherGlib::processEvents(QFlags) ()
at /usr/lib/libQt5Core.so.5
#4  0x7fedce25885c in
QEventLoop::exec(QFlags) () at
/usr/lib/libQt5Core.so.5
#5  0x7fedce0a1ac9 in QThread::exec() () at /usr/lib/libQt5Core.so.5
#6  0x7fedce6fc976 in  () at /usr/lib/libQt5DBus.so.5
#7  0x7fedce0abb95 in  () at /usr/lib/libQt5Core.so.5
#8  0x7fedc90e1075 in start_thread () at /usr/lib/libpthread.so.0
#9  0x7fedd40f153f in clone () at /usr/lib/libc.so.6

Thread 2 (Thread 0x7fedbd039700 (LWP 3558)):
#0  0x7fedd40e6ea9 in poll () at /usr/lib/libc.so.6
#1  0x7fedc6392180 in  () at /usr/lib/libxcb.so.1
#2  0x7fedc6393e4b in xcb_wait_for_event () at /usr/lib/libxcb.so.1
#3  0x7fedbfbd6f1a in  () at /usr/lib/libQt5XcbQpa.so.5
#4  0x7fedce0abb95 in  () at /usr/lib/libQt5Core.so.5
#5  0x7fedc90e1075 in start_thread () at /usr/lib/libpthread.so.0
#6  0x7fedd40f153f in clone () at /usr/lib/libc.so.6

Thread 1 (Thread 0x7fedd4826800 (LWP 3556)):
[KCrash Handler]
#6  0x7fedd055b6ed in  () at /usr/lib/libQt5Xml.so.5
#7  0x7fedd055bf44 in QDomNode::namedItem(QString const&) const () at
/usr/lib/libQt5Xml.so.5
#8  0x7fedd35ae59e in  () at /usr/lib/libKF5Bookmarks.so.5
#9  0x7fedd35b0e9e in KBookmark::metaData(QString const&, bool) const () at
/usr/lib/libKF5Bookmarks.so.5
#10 0x7fedd35b2762 in KBookmark::setMetaDataItem(QString const&, QString
const&, KBookmark::MetaDataOverwriteMode) () at /usr/lib/libKF5Bookmarks.so.5
#11 0x7fedd384b3c5 in
KFilePlacesModel::setGroupHidden(KFilePlacesModel::GroupType, bool) () at
/usr/lib/libKF5KIOFileWidgets.so.5
#12 0x55b085762c00 in  ()
#13 0x55b0855b9460 in  ()
#14 0x7fedb800a5a0 in  ()
#15 0x55b08531fb70 in  ()
#16 0x7fedd441ac68 in  () at /usr/lib/libkdeinit5_dolphin.so
#17 0x7fedd4418a9a in  () at /usr/lib/libkdeinit5_dolphin.so
#18 0x7fedce283b60 in QMetaObject::activate(QObject*, int, int, void**) ()
at /usr/lib/libQt5Core.so.5
#19 0x7fedd3db2e17 in KItemListController::itemContextMenuRequested(int,
QPointF const&) () at /usr/lib/libdolphinprivate.so.5
#20 0x7fedd3d464f7 in
KItemListController::mousePressEvent(QGraphicsSceneMouseEvent*, QTransform
const&) () at /usr/lib/libdolphinprivate.so.5
#21 0x7fedd3d45d10 in KItemListController::processEvent(QEvent*, QTransform
const&) () at /usr/lib/libdolphinprivate.so.5
#22 0x7fedd3d579b0 in KItemListView::event(QEvent*) () at
/usr/lib/libdolphinprivate.so.5
#23 0x7fedcf259984 in 

[KEXI] [Bug 394914] table default values not displayed

2018-06-09 Thread Jarosław Staniek
https://bugs.kde.org/show_bug.cgi?id=394914

Jarosław Staniek  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |ASSIGNED

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

[KEXI] [Bug 394913] SQLite: Incorrect display of large unsigned int (>0x7FFFFFFF)

2018-06-09 Thread Jarosław Staniek
https://bugs.kde.org/show_bug.cgi?id=394913

Jarosław Staniek  changed:

   What|Removed |Added

Summary|Incorrect display of large  |SQLite: Incorrect display
   |unsigned int (>0x7FFF)  |of large unsigned int
   ||(>0x7FFF)

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

[kate] [Bug 353747] Schema button implements a pop-up menu, but menu only opens for click-and-hold

2018-06-09 Thread Nate Graham
https://bugs.kde.org/show_bug.cgi?id=353747

Nate Graham  changed:

   What|Removed |Added

   Keywords||usability

--- Comment #5 from Nate Graham  ---
I've updated the patch to fix the other toolbar buttons that can show menus,
too.

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

[plasmashell] [Bug 330531] Allow right-click copy-to-clipboard of selected date in addition to today in calendar popup

2018-06-09 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=330531

David Edmundson  changed:

   What|Removed |Added

 CC||k...@davidedmundson.co.uk
 Ever confirmed|0   |1
 Status|UNCONFIRMED |CONFIRMED

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

[plasmashell] [Bug 347633] add option to remove history

2018-06-09 Thread David Edmundson
https://bugs.kde.org/show_bug.cgi?id=347633

David Edmundson  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |INVALID

--- Comment #3 from David Edmundson  ---
Right now Kickoff alway remembers the applications it last launched.
You can.Right click: Forget all.

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

[dolphin] [Bug 395168] Dolphin show ISO file preview when extracting

2018-06-09 Thread Guo Yunhe
https://bugs.kde.org/show_bug.cgi?id=395168

--- Comment #3 from Guo Yunhe  ---
Created attachment 113175
  --> https://bugs.kde.org/attachment.cgi?id=113175=edit
Dolphin generate file preview for ISO files that haven't completely been
extracted

Here is the screenshot I got. I am downloading some ISO from here
https://www.emuparadise.me/Sony_Playstation_2_ISOs/FIFA_12_(Europe)_(En,Es,Pt,Pl,Ru)/153276-download

PlayStation 2 ISO may be different from typical installation image or movie
DVD.

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

[krita] [Bug 361130] Layer Style: Stroke effect with big size doesn't follow correctly layer content shape

2018-06-09 Thread Dmitry Kazakov
https://bugs.kde.org/show_bug.cgi?id=361130

Dmitry Kazakov  changed:

   What|Removed |Added

  Latest Commit|https://commits.kde.org/kri |https://commits.kde.org/kri
   |ta/2747016a313d98c137eb5d57 |ta/ace6d8252a5a7b783ace53ad
   |229e0112854b70aa|ded6584f315ebe1f

--- Comment #4 from Dmitry Kazakov  ---
Git commit ace6d8252a5a7b783ace53added6584f315ebe1f by Dmitry Kazakov.
Committed on 09/06/2018 at 09:00.
Pushed by dkazakov into branch 'krita/4.0'.

Connect Erode/Dilate algorithms to "Stroke" layer style

Now it is **much** faster, more roundish and doesn't eat your memory :)
Related: bug 390985
CC:kimages...@kde.org

M  +0-18   libs/image/layerstyles/kis_layer_style_filter_environment.cpp
M  +0-2libs/image/layerstyles/kis_layer_style_filter_environment.h
M  +43   -46   libs/image/layerstyles/kis_ls_stroke_filter.cpp

https://commits.kde.org/krita/ace6d8252a5a7b783ace53added6584f315ebe1f

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

[krita] [Bug 390985] Krita uses a lot of ram while applying layer styles.

2018-06-09 Thread Dmitry Kazakov
https://bugs.kde.org/show_bug.cgi?id=390985

Dmitry Kazakov  changed:

   What|Removed |Added

  Latest Commit|https://commits.kde.org/kri |https://commits.kde.org/kri
   |ta/2747016a313d98c137eb5d57 |ta/ace6d8252a5a7b783ace53ad
   |229e0112854b70aa|ded6584f315ebe1f

--- Comment #6 from Dmitry Kazakov  ---
Git commit ace6d8252a5a7b783ace53added6584f315ebe1f by Dmitry Kazakov.
Committed on 09/06/2018 at 09:00.
Pushed by dkazakov into branch 'krita/4.0'.

Connect Erode/Dilate algorithms to "Stroke" layer style

Now it is **much** faster, more roundish and doesn't eat your memory :)
Related: bug 361130
CC:kimages...@kde.org

M  +0-18   libs/image/layerstyles/kis_layer_style_filter_environment.cpp
M  +0-2libs/image/layerstyles/kis_layer_style_filter_environment.h
M  +43   -46   libs/image/layerstyles/kis_ls_stroke_filter.cpp

https://commits.kde.org/krita/ace6d8252a5a7b783ace53added6584f315ebe1f

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

[Falkon] [Bug 395112] Empty bar graph in Wayback Machine's calendar view

2018-06-09 Thread Theo
https://bugs.kde.org/show_bug.cgi?id=395112

--- Comment #3 from Theo  ---
(In reply to David Rosca from comment #2)
> It does use QtWebEngine, not QtWebKit.
That makes more sense (given that I even mentioned QtWebEngineProcess in my
comment). For the record: Qt WebEngine was updated from 5.10.1 to 5.11.0
(openSUSE Tumbleweed libqt5-qtwebengine).

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

[dolphin] [Bug 382736] Devices send to wrong place when I edit fstab

2018-06-09 Thread Julian Schraner
https://bugs.kde.org/show_bug.cgi?id=382736

Julian Schraner  changed:

   What|Removed |Added

 Status|NEEDSINFO   |RESOLVED
 Resolution|WAITINGFORINFO  |FIXED

--- Comment #2 from Julian Schraner  ---
No response -> closing. Please update Dolphin and try to reproduce this
behavior. If it does still exist, then reopen this report. Thanks a lot!

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

[dolphin] [Bug 382847] listing desktop:// in kio_desktop crashes

2018-06-09 Thread Julian Schraner
https://bugs.kde.org/show_bug.cgi?id=382847

--- Comment #3 from Julian Schraner  ---
It'd be great if we knew the status of this ticket. Aaron, have you been able
to update your system & test this again?

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

[plasmashell] [Bug 251284] background of text of desktop icons cant be specified

2018-06-09 Thread Christoph Thielecke
https://bugs.kde.org/show_bug.cgi?id=251284

Christoph Thielecke  changed:

   What|Removed |Added

   Target Milestone|--- |1.0
Version|unspecified |5.12.5
 Status|RESOLVED|REOPENED
 Resolution|UNMAINTAINED|---
  Component|desktop |Desktop Containment
Product|plasma4 |plasmashell
   Assignee|plasma-b...@kde.org |se...@kde.org
 Ever confirmed|0   |1
 CC||plasma-b...@kde.org

--- Comment #9 from Christoph Thielecke  ---
This is still valid with plasmashell.

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

[plasmashell] [Bug 251283] length of text of desktop icons cant be specified

2018-06-09 Thread Christoph Thielecke
https://bugs.kde.org/show_bug.cgi?id=251283

Christoph Thielecke  changed:

   What|Removed |Added

   Target Milestone|--- |1.0
Product|plasma4 |plasmashell
Version|unspecified |5.12.5
 Status|RESOLVED|REOPENED
   Assignee|i.semenov@gmail.com |se...@kde.org
  Component|widget-folderview   |Desktop Containment
 Resolution|UNMAINTAINED|---

--- Comment #6 from Christoph Thielecke  ---
This still valid for plasmashell.

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

[plasmashell] [Bug 289998] panel does overlap other panel on same edge

2018-06-09 Thread Christoph Thielecke
https://bugs.kde.org/show_bug.cgi?id=289998

Christoph Thielecke  changed:

   What|Removed |Added

 Ever confirmed|0   |1
   Target Milestone|--- |1.0
Product|plasma4 |plasmashell
Version|4.7.95  |5.11.5
 Status|RESOLVED|REOPENED
  Component|containment-panel   |Panel
 Resolution|UNMAINTAINED|---

--- Comment #12 from Christoph Thielecke  ---
Still valid with plasmashell.

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

[dolphin] [Bug 384535] Drag and drop onto Tags no longer works

2018-06-09 Thread Julian Schraner
https://bugs.kde.org/show_bug.cgi?id=384535

Julian Schraner  changed:

   What|Removed |Added

 CC||juliquad...@gmail.com
 Status|UNCONFIRMED |NEEDSINFO
 Resolution|--- |WAITINGFORINFO

--- Comment #1 from Julian Schraner  ---
I can do this with Dolphin 18.04:

1. Create a tag "test" & assign a random file to the tag
2. Add a new Places entry with the target "tags:test/"
3. Drag n'Drop another file onto the entry
4. Select "Move..."
5. The file gets tagged with "test" and is searchable via this tag

Can you confirm that this behavior is now working as expected?
Thanks!

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

[ktorrent] [Bug 359903] ktorrent sequential download UI wishlist

2018-06-09 Thread Andrew Travneff
https://bugs.kde.org/show_bug.cgi?id=359903

Andrew Travneff  changed:

   What|Removed |Added

 CC||travn...@gmail.com

--- Comment #4 from Andrew Travneff  ---
(In reply to Nick Shaforostoff from comment #1)
> currently sequential download is activated automatically when you open a
> video or audio file from torrent file tree inside ktorrent's bottom panel

Do you mean sequential download for the entire file (not only start/end
chunks)?
It is described anywhere?

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

[kwin] [Bug 395179] New: Global menu getting outside of screen

2018-06-09 Thread QIN Yuhao
https://bugs.kde.org/show_bug.cgi?id=395179

Bug ID: 395179
   Summary: Global menu getting outside of screen
   Product: kwin
   Version: 5.12.5
  Platform: Gentoo Packages
OS: Linux
Status: UNCONFIRMED
  Severity: minor
  Priority: NOR
 Component: effects-window-management
  Assignee: kwin-bugs-n...@kde.org
  Reporter: qinq_...@buaa.edu.cn
  Target Milestone: ---

Created attachment 113173
  --> https://bugs.kde.org/attachment.cgi?id=113173=edit
Global menu going outside of screen. There is only one monitor.

If the global menu is relocated to be on the right, the global menu will still
try to go right and even go out of screen, like in the attached picture.

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

[frameworks-kdesignerplugin] [Bug 395181] New: Loading kf5widgets plugin causes qt designer to crash

2018-06-09 Thread Edward Kigwana
https://bugs.kde.org/show_bug.cgi?id=395181

Bug ID: 395181
   Summary: Loading kf5widgets plugin causes qt designer to crash
   Product: frameworks-kdesignerplugin
   Version: unspecified
  Platform: Gentoo Packages
OS: Linux
Status: UNCONFIRMED
  Severity: crash
  Priority: NOR
 Component: general
  Assignee: alex.me...@kde.org
  Reporter: edwardw...@gmail.com
CC: kdelibs-b...@kde.org
  Target Milestone: ---

Version: git head, qt-5.11.0_rc2

Looks like something changed in kwidgetaddons that is causing this crash.

designer output with plugin removed:

mkdir -p /home/ekigwana/.local/share/akonadi/db_data

QObject::connect: Connecting from QTabBar::tabCloseRequested(int) to COMPAT
slot (KTabBar::closeRequest(int))
Connecting to deprecated signal
QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
Error while reparenting!
Designer: A class name mismatch occurred when creating a widget using the
custom widget factory registered for widgets of class KDialog. It returned a
widget of class QDialog.
QObject::connect: Connecting from QTabBar::tabCloseRequested(int) to COMPAT
slot (KTabBar::closeRequest(int))
QMetaProperty::read: Unable to handle unregistered datatype 'SelectionBehavior'
for property 'QTabBar::selectionBehaviorOnRemove'
/usr/bin/mysqlcheck: Got error: 1049: Unknown database 'akonadi' when selecting
the database
Connecting to deprecated signal
QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
org.kde.pim.kidentitymanagement: IdentityManager: There was no default
identity. Marking first one as default.
org.kde.pim.kidentitymanagement: IdentityManager: There was no default
identity. Marking first one as default.
org.kde.pim.kidentitymanagement: IdentityManager: There was no default
identity. Marking first one as default.
org.kde.pim.maildirresource: the resource is not properly configured: there is
no config file for the resource. We create a new one.
QObject::killTimer: Timers cannot be stopped from another thread
QXcbConnection: XCB error: 3 (BadWindow), sequence: 1163, resource id:
39910544, major code: 40 (TranslateCoords), minor code: 0
"No file selected."
org.kde.pim.maildirresource: the resource is not properly configured: there is
no config file for the resource. We create a new one.
QObject::killTimer: Timers cannot be stopped from another thread
QIODevice::read (QLocalSocket): device not open

designer out put on crash:
--
Connecting to deprecated signal
QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
QObject::connect: Connecting from QTabBar::tabCloseRequested(int) to COMPAT
slot (KTabBar::closeRequest(int))
Error while reparenting!
Designer: A class name mismatch occurred when creating a widget using the
custom widget factory registered for widgets of class KDialog. It returned a
widget of class QDialog.
QObject::connect: Connecting from QTabBar::tabCloseRequested(int) to COMPAT
slot (KTabBar::closeRequest(int))
QMetaProperty::read: Unable to handle unregistered datatype 'SelectionBehavior'
for property 'QTabBar::selectionBehaviorOnRemove'
[New Thread 0x7fff52d73700 (LWP 14623)]
ASSERT failure in QVector::operator[]: "index out of range", file
../../include/QtCore/../../src/corelib/tools/qvector.h, line 436

Thread 1 "designer" received signal SIGABRT, Aborted.
__GI_raise (sig=sig@entry=6) at ../sysdeps/unix/sysv/linux/raise.c:51
51  }
(gdb) 
(gdb) org.kde.pim.akonadiserver: database server stopped unexpectedly
org.kde.pim.akonadiserver: Database process exited unexpectedly during initial
connection!
org.kde.pim.akonadiserver: executable: "/usr/sbin/mysqld"
org.kde.pim.akonadiserver: arguments:
("--defaults-file=/home/ekigwana/.local/share/akonadi/mysql.conf",
"--datadir=/home/ekigwana/.local/share/akonadi/db_data/",
"--socket=/tmp/akonadi-ekigwana.G1aOxT/mysql.socket",
"--pid-file=/tmp/akonadi-ekigwana.G1aOxT/mysql.pid")
org.kde.pim.akonadiserver: stdout: ""
org.kde.pim.akonadiserver: stderr: "2018-06-09 15:27:13 0 [Note]
/usr/sbin/mysqld (mysqld 10.3.7-MariaDB) starting as process 14607
...\n2018-06-09 15:27:13 0 [Warning] Can't create test file
/home/ekigwana/.local/share/akonadi/db_data/i7-tower.lower-test\n\x07/usr/sbin/mysqld:
Can't change dir to '/home/ekigwana/.local/share/akonadi/db_data/' (Errcode: 2
\"No such file or directory\")\n2018-06-09 15:27:13 0 [ERROR] Aborting\n\n"
org.kde.pim.akonadiserver: exit code: 1
org.kde.pim.akonadiserver: process error: "Unknown error"
/usr/bin/mysqladmin: connect to server at 'localhost' failed
error: 'Can't connect to local MySQL server through socket
'/tmp/akonadi-ekigwana.G1aOxT/mysql.socket' (2)'
Check that mysqld is running and that the socket:
'/tmp/akonadi-ekigwana.G1aOxT/mysql.socket' exists!
org.kde.pim.akonadiserver: Failed to remove runtime connection config file

[krita] [Bug 395186] New: Document.selection() returns None when selection created by Action is still processing.

2018-06-09 Thread n-pigeon
https://bugs.kde.org/show_bug.cgi?id=395186

Bug ID: 395186
   Summary: Document.selection() returns None when selection
created by Action is still processing.
   Product: krita
   Version: 4.0.3
  Platform: Appimage
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: Scripting
  Assignee: krita-bugs-n...@kde.org
  Reporter: gbird...@gmail.com
  Target Milestone: ---

Created attachment 113176
  --> https://bugs.kde.org/attachment.cgi?id=113176=edit
File for testing

When I try to create selection from Action for example 'selectopaque' and then
fetch it with s = doc.selection() most of the time I will get s == None.
If I run the same code again when selection already exists doc.selection()
returns actual selection.

Steps:
1 Open Attached test file
2 Select layer with green circle
3 Run this script in Scripter

from krita import *

k = Krita.instance()
d = k.activeDocument()

def test_selection():
k.action('selectopaque').trigger()

s = d.selection()
if s == None:
print("Yes...")
else:
print("No O_O")

s.invert()
d.setSelection(s)
d.refreshProjection()   

test_selection()
#test_selection()

Result:
Krita will creates selection from the green circle.
Scripter throws: AttributeError: 'NoneType' object has no attribute 'invert'

Expected result:
Krita creates selection from the green circle and inverts this selection.

4 Remove selection from the Image
5 Uncomment last line of the script so test_selection() will be run 2 times in
a row.
6 Run script again

Result:
As expected. Inverted selection from green circle.

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

[dolphin] [Bug 395168] Dolphin show ISO file preview when extracting

2018-06-09 Thread Julian Schraner
https://bugs.kde.org/show_bug.cgi?id=395168

Julian Schraner  changed:

   What|Removed |Added

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

--- Comment #4 from Julian Schraner  ---
Okay, I can now also reproduce this behavior. The ISO you mentioned seems to
contain UDF filesystem data, so Dolphin seems to interpret this specific type
of data as plain text and then tries to generate a preview. It might also be a
problem in KIO but I am not completely sure about that.

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

[kwin] [Bug 395177] New: Wayland subsubmenus are not put in the correct place when the submenu has to be re positioned due to screen space

2018-06-09 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=395177

Bug ID: 395177
   Summary: Wayland subsubmenus are not put in the correct place
when the submenu has to be re positioned due to screen
space
   Product: kwin
   Version: git master
  Platform: Other
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: wayland-generic
  Assignee: kwin-bugs-n...@kde.org
  Reporter: bluescreenaven...@gmail.com
  Target Milestone: ---

Created attachment 113172
  --> https://bugs.kde.org/attachment.cgi?id=113172=edit
The placement of the subsubmenu when the first menu is repositioned

Hi

First, I am surprised that kwin actually supports it, since Weston does not. 

but when I have kate near the bottom of the screen, and I go View>Wordwrap

the View menu appears properly so it is in the correct location, however, the
Word wrap (and other sub menus) are placed in the wrong location, almost as if
though it's treating it as if though the menu was not re positioned... 

(or is this a bug in the client side)


Thanks

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

[dolphin] [Bug 382822] Location field auto-complete doesn't always notice all subdirectories

2018-06-09 Thread Julian Schraner
https://bugs.kde.org/show_bug.cgi?id=382822

Julian Schraner  changed:

   What|Removed |Added

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

--- Comment #3 from Julian Schraner  ---
Okay, even though I have not been able to reproduce this myself as it seems to
only occur randomly, I'll set the status to CONFIRMED. It'll be pretty hard to
fix this if the behavior is truly random, but we'll do our best.

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

[dolphin] [Bug 385457] Icons show wrong image

2018-06-09 Thread Julian Schraner
https://bugs.kde.org/show_bug.cgi?id=385457

Julian Schraner  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDSINFO
 CC||juliquad...@gmail.com
 Resolution|--- |WAITINGFORINFO

--- Comment #1 from Julian Schraner  ---
Does this behavior still happen with a newer version of Dolphin? If yes, it'd
be great if we had a simple way to trigger the bug. Thanks!

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

[kwin] [Bug 395179] Global menu getting outside of screen

2018-06-09 Thread Vlad Zagorodniy
https://bugs.kde.org/show_bug.cgi?id=395179

Vlad Zagorodniy  changed:

   What|Removed |Added

  Component|effects-window-management   |appmenu
 CC||vladz...@gmail.com

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

[KEXI] [Bug 394913] incorrect display of large unsigned int

2018-06-09 Thread Jarosław Staniek
https://bugs.kde.org/show_bug.cgi?id=394913

Jarosław Staniek  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |ASSIGNED

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

  1   2   >