[krita] [Bug 360677] Krita constantly creates and removes native threads

2016-08-18 Thread Dmitry Kazakov via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=360677

Dmitry Kazakov  changed:

   What|Removed |Added

  Latest Commit||http://commits.kde.org/krit
   ||a/9c34fef3320983c8e05423631
   ||21035eab225cd29
 Resolution|WAITINGFORINFO  |FIXED
  Latest Commit||http://commits.kde.org/krit
   ||a/9c34fef3320983c8e05423631
   ||21035eab225cd29
 Resolution|WAITINGFORINFO  |FIXED

--- Comment #8 from Dmitry Kazakov  ---
Git commit 9c34fef3320983c8e0542363121035eab225cd29 by Dmitry Kazakov, on
behalf of Andrew Savonichev.
Committed on 18/08/2016 at 06:59.
Pushed by dkazakov into branch 'master'.

Summary:
KisUpdaterContext::waitForDone() method must lock context and wait
untill all threads finish their current tasks.
We cannot call QThreadPool.waitForDone() to do this, because after
waiting it removes all threads from the pool.

Test Plan:
Verified that no extra threads created: 8 for global thread pool and 8 for
KisUpdaterContext

(gdb) info threads
  Id   Target Id Frame
  22   Thread 0x7fff8cff9700 (LWP 18481) "Thread (pooled)" 0x7fffef6e2cc8
in pthread_cond_timedwait () from /lib64/libpthread.so.0
  21   Thread 0x7fff8d7fa700 (LWP 18480) "Thread (pooled)" 0x7fffef6e2cc8
in pthread_cond_timedwait () from /lib64/libpthread.so.0
  20   Thread 0x7fff8dffb700 (LWP 18479) "Thread (pooled)" 0x7fffef6e2cc8
in pthread_cond_timedwait () from /lib64/libpthread.so.0
  19   Thread 0x7fff8e7fc700 (LWP 18478) "Thread (pooled)" 0x7fffef6e2cc8
in pthread_cond_timedwait () from /lib64/libpthread.so.0
  18   Thread 0x7fff8effd700 (LWP 18477) "Thread (pooled)" 0x7fffef6e2cc8
in pthread_cond_timedwait () from /lib64/libpthread.so.0
  17   Thread 0x7fff8f7fe700 (LWP 18476) "Thread (pooled)" 0x7fffef6e2cc8
in pthread_cond_timedwait () from /lib64/libpthread.so.0
  16   Thread 0x7fff8700 (LWP 18475) "Thread (pooled)" 0x7fffef6e2cc8
in pthread_cond_timedwait () from /lib64/libpthread.so.0
  15   Thread 0x7fff9bfff700 (LWP 18474) "Thread (pooled)" 0x7fffef6e2cc8
in pthread_cond_timedwait () from /lib64/libpthread.so.0
  13   Thread 0x7fffb8ff9700 (LWP 18471) "QFileInfoGather" 0x7fffef6e291f
in pthread_cond_wait () from /lib64/libpthread.so.0
  12   Thread 0x7fffb97fa700 (LWP 18470) "Thread (pooled)" 0x7fffef6e2cc8
in pthread_cond_timedwait () from /lib64/libpthread.so.0
  11   Thread 0x7fffb9ffb700 (LWP 18469) "Thread (pooled)" 0x7fffef6e2cc8
in pthread_cond_timedwait () from /lib64/libpthread.so.0
  10   Thread 0x7fffba7fc700 (LWP 18468) "Thread (pooled)" 0x7fffef6e2cc8
in pthread_cond_timedwait () from /lib64/libpthread.so.0
  9Thread 0x7fffbaffd700 (LWP 18467) "Thread (pooled)" 0x7fffef6e2cc8
in pthread_cond_timedwait () from /lib64/libpthread.so.0
  8Thread 0x7fffbb7fe700 (LWP 18466) "Thread (pooled)" 0x7fffef6e2cc8
in pthread_cond_timedwait () from /lib64/libpthread.so.0
  7Thread 0x7fffbbfff700 (LWP 18465) "Thread (pooled)" 0x7fffef6e2cc8
in pthread_cond_timedwait () from /lib64/libpthread.so.0
  6Thread 0x7fffc8f8a700 (LWP 18464) "Thread (pooled)" 0x7fffef6e2cc8
in pthread_cond_timedwait () from /lib64/libpthread.so.0
  5Thread 0x7fffc978b700 (LWP 18463) "Thread (pooled)" 0x7fffef6e2cc8
in pthread_cond_timedwait () from /lib64/libpthread.so.0
  4Thread 0x7fffca38d700 (LWP 18462) "KisTileDataSwap" 0x7fffef6e291f
in pthread_cond_wait () from /lib64/libpthread.so.0
  3Thread 0x7fffcab8e700 (LWP 18461) "KisTileDataPool" 0x7fffef6e291f
in pthread_cond_wait () from /lib64/libpthread.so.0
  2Thread 0x7fffe0843700 (LWP 18460) "QXcbEventReader" 0x716a33ed
in poll () from /lib64/libc.so.6
* 1Thread 0x7fffe7f3f7c0 (LWP 18456) "krita" 0x716a33ed in poll ()
from /lib64/libc.so.6

Reviewers: dkazakov

Reviewed By: dkazakov

Subscribers: fazek
Differential Revision: https://phabricator.kde.org/D1166

M  +10   -2libs/image/kis_update_scheduler.cpp
M  +89   -14   libs/image/kis_updater_context.cpp
M  +14   -0libs/image/kis_updater_context.h
M  +14   -0libs/image/tests/kis_strokes_queue_test.cpp
M  +2-0libs/image/tests/kis_updater_context_test.cpp

http://commits.kde.org/krita/9c34fef3320983c8e0542363121035eab225cd29

--- Comment #9 from Dmitry Kazakov  ---
Git commit 9c34fef3320983c8e0542363121035eab225cd29 by Dmitry Kazakov, on
behalf of Andrew Savonichev.
Committed on 18/08/2016 at 06:59.
Pushed by dkazakov into branch 'master'.

Summary:
KisUpdaterContext::waitForDone() method must lock context and wait
untill all threads finish their current tasks.
We cannot call QThreadPool.waitForDone() to do this, because after
wa

[konqueror] [Bug 363061] Konqueror crashing while opening URL from Thunderbird email client

2016-08-18 Thread Norbert Girardi via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=363061

--- Comment #1 from Norbert Girardi  ---
Created attachment 100656
  --> https://bugs.kde.org/attachment.cgi?id=100656&action=edit
New crash information added by DrKonqi

konqueror (4.14.22) on KDE Platform 4.14.22 using Qt 4.8.7

- What I was doing when the application crashed:

Got an email from unitymedia with an URL. clicked the URL and Konquerer
crashed.

-- Backtrace (Reduced):
#6  0x7f647455b6b9 in gdk_display_open () at /usr/lib64/libgdk-x11-2.0.so.0
#7  0x7f647452c5b2 in gdk_display_open_default_libgtk_only () at
/usr/lib64/libgdk-x11-2.0.so.0
#8  0x7f64748f69d5 in gtk_init () at /usr/lib64/libgtk-x11-2.0.so.0
#9  0x7f64dd442e7b in WebCore::initializeGtk(QLibrary*) () at
/usr/lib64/libQtWebKit.so.4
#10 0x7f64dd443183 in WebCore::PluginPackage::load() () at
/usr/lib64/libQtWebKit.so.4

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


[konqueror] [Bug 363061] Konqueror crashing while opening URL from Thunderbird email client

2016-08-18 Thread Norbert Girardi via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=363061

Norbert Girardi  changed:

   What|Removed |Added

 CC||sagichni...@girardis.de

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


[plasmashell] [Bug 353975] Black screen on second display.

2016-08-18 Thread Samuel Suther via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=353975

Samuel Suther  changed:

   What|Removed |Added

 CC||s.sut...@gmx.de

--- Comment #53 from Samuel Suther  ---
(In reply to Iacopo Palazzi from comment #48)

I have Asus N76vz. Since I play i bit arround with plugin and plugout the vga
monitor, I got trouble with dualmonitor-Setup. (BEFORE it works great).

I'll describe the behavior exactly, so maybe sombody can see where the trouble
comes from:

If I boot and login into KDE, external Monitor (following named S1) shows the
Menu, and a wallpaper.
Second monitor (following named S2) is black, BUT if I move the mouse to this
screen, I can see the mouse-pointer. Even if right-click on S2 dosn't show any
menu (seems plasma not working on this screen)

So if I unplug, and replugin the S1, both screen have a wallpaper and work like
a charm. But after replugin, the menu is on S2.

Maybe this help a bit, to figure out, that it seems to be a plasma-issue?!

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


[krita] [Bug 355137] Oversized icons in left toolbar

2016-08-18 Thread Kvaks via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=355137

Kvaks  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED

--- Comment #4 from Kvaks  ---
Let me see... No, the icons are no longer oversized in version 3.0.1 alpha2.
You fixed it! Very nice! Thanks!

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


[krita] [Bug 360677] Krita constantly creates and removes native threads

2016-08-18 Thread Dmitry Kazakov via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=360677

Dmitry Kazakov  changed:

   What|Removed |Added

  Latest Commit||http://commits.kde.org/krit
   ||a/9c34fef3320983c8e05423631
   ||21035eab225cd29
 Resolution|WAITINGFORINFO  |FIXED
  Latest Commit||http://commits.kde.org/krit
   ||a/9c34fef3320983c8e05423631
   ||21035eab225cd29
 Resolution|WAITINGFORINFO  |FIXED

--- Comment #8 from Dmitry Kazakov  ---
Git commit 9c34fef3320983c8e0542363121035eab225cd29 by Dmitry Kazakov, on
behalf of Andrew Savonichev.
Committed on 18/08/2016 at 06:59.
Pushed by dkazakov into branch 'master'.

Summary:
KisUpdaterContext::waitForDone() method must lock context and wait
untill all threads finish their current tasks.
We cannot call QThreadPool.waitForDone() to do this, because after
waiting it removes all threads from the pool.

Test Plan:
Verified that no extra threads created: 8 for global thread pool and 8 for
KisUpdaterContext

(gdb) info threads
  Id   Target Id Frame
  22   Thread 0x7fff8cff9700 (LWP 18481) "Thread (pooled)" 0x7fffef6e2cc8
in pthread_cond_timedwait () from /lib64/libpthread.so.0
  21   Thread 0x7fff8d7fa700 (LWP 18480) "Thread (pooled)" 0x7fffef6e2cc8
in pthread_cond_timedwait () from /lib64/libpthread.so.0
  20   Thread 0x7fff8dffb700 (LWP 18479) "Thread (pooled)" 0x7fffef6e2cc8
in pthread_cond_timedwait () from /lib64/libpthread.so.0
  19   Thread 0x7fff8e7fc700 (LWP 18478) "Thread (pooled)" 0x7fffef6e2cc8
in pthread_cond_timedwait () from /lib64/libpthread.so.0
  18   Thread 0x7fff8effd700 (LWP 18477) "Thread (pooled)" 0x7fffef6e2cc8
in pthread_cond_timedwait () from /lib64/libpthread.so.0
  17   Thread 0x7fff8f7fe700 (LWP 18476) "Thread (pooled)" 0x7fffef6e2cc8
in pthread_cond_timedwait () from /lib64/libpthread.so.0
  16   Thread 0x7fff8700 (LWP 18475) "Thread (pooled)" 0x7fffef6e2cc8
in pthread_cond_timedwait () from /lib64/libpthread.so.0
  15   Thread 0x7fff9bfff700 (LWP 18474) "Thread (pooled)" 0x7fffef6e2cc8
in pthread_cond_timedwait () from /lib64/libpthread.so.0
  13   Thread 0x7fffb8ff9700 (LWP 18471) "QFileInfoGather" 0x7fffef6e291f
in pthread_cond_wait () from /lib64/libpthread.so.0
  12   Thread 0x7fffb97fa700 (LWP 18470) "Thread (pooled)" 0x7fffef6e2cc8
in pthread_cond_timedwait () from /lib64/libpthread.so.0
  11   Thread 0x7fffb9ffb700 (LWP 18469) "Thread (pooled)" 0x7fffef6e2cc8
in pthread_cond_timedwait () from /lib64/libpthread.so.0
  10   Thread 0x7fffba7fc700 (LWP 18468) "Thread (pooled)" 0x7fffef6e2cc8
in pthread_cond_timedwait () from /lib64/libpthread.so.0
  9Thread 0x7fffbaffd700 (LWP 18467) "Thread (pooled)" 0x7fffef6e2cc8
in pthread_cond_timedwait () from /lib64/libpthread.so.0
  8Thread 0x7fffbb7fe700 (LWP 18466) "Thread (pooled)" 0x7fffef6e2cc8
in pthread_cond_timedwait () from /lib64/libpthread.so.0
  7Thread 0x7fffbbfff700 (LWP 18465) "Thread (pooled)" 0x7fffef6e2cc8
in pthread_cond_timedwait () from /lib64/libpthread.so.0
  6Thread 0x7fffc8f8a700 (LWP 18464) "Thread (pooled)" 0x7fffef6e2cc8
in pthread_cond_timedwait () from /lib64/libpthread.so.0
  5Thread 0x7fffc978b700 (LWP 18463) "Thread (pooled)" 0x7fffef6e2cc8
in pthread_cond_timedwait () from /lib64/libpthread.so.0
  4Thread 0x7fffca38d700 (LWP 18462) "KisTileDataSwap" 0x7fffef6e291f
in pthread_cond_wait () from /lib64/libpthread.so.0
  3Thread 0x7fffcab8e700 (LWP 18461) "KisTileDataPool" 0x7fffef6e291f
in pthread_cond_wait () from /lib64/libpthread.so.0
  2Thread 0x7fffe0843700 (LWP 18460) "QXcbEventReader" 0x716a33ed
in poll () from /lib64/libc.so.6
* 1Thread 0x7fffe7f3f7c0 (LWP 18456) "krita" 0x716a33ed in poll ()
from /lib64/libc.so.6

Reviewers: dkazakov

Reviewed By: dkazakov

Subscribers: fazek
Differential Revision: https://phabricator.kde.org/D1166

M  +10   -2libs/image/kis_update_scheduler.cpp
M  +89   -14   libs/image/kis_updater_context.cpp
M  +14   -0libs/image/kis_updater_context.h
M  +14   -0libs/image/tests/kis_strokes_queue_test.cpp
M  +2-0libs/image/tests/kis_updater_context_test.cpp

http://commits.kde.org/krita/9c34fef3320983c8e0542363121035eab225cd29

--- Comment #9 from Dmitry Kazakov  ---
Git commit 9c34fef3320983c8e0542363121035eab225cd29 by Dmitry Kazakov, on
behalf of Andrew Savonichev.
Committed on 18/08/2016 at 06:59.
Pushed by dkazakov into branch 'master'.

Summary:
KisUpdaterContext::waitForDone() method must lock context and wait
untill all threads finish their current tasks.
We cannot call QThreadPool.waitForDone() to do this, because after
wa

[QtCurve] [Bug 363753] crash-at-exit in QtCurve::Style::disconnectDBus

2016-08-18 Thread Kott via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=363753

--- Comment #16 from Kott  ---
> (The "bug" was added**). It's not a qtcurve bug, it's a QtDBus one and
> should be fixed there. It just happens that in some configuration the QtDBus
> is unloaded before QtCurve and after in other cases. The commit should only
> be reverted if
Well, "bug", my apologies:)

What patches (Debian, Thiago's) are you talking about? And what version of Qt
do use?

thnx

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


[KBibTeX] [Bug 353899] several user configurable settings are ignored

2016-08-18 Thread Thomas Fischer via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=353899

Thomas Fischer  changed:

   What|Removed |Added

  Latest Commit|8a6fc36e6c81f6dfaa0da5  |c6855b146640e7efd7ebbf8fc6a
   ||bd

--- Comment #9 from Thomas Fischer  ---
(In reply to Gandalf Lechner from comment #8)
> After a fresh checkout just now, the program crashes immediately after
> starting it, with the message 
> 
> "ASSERT failure in MenuLineEdit::slotTextChanged: "d->m_multiLineEditText is
> NULL", file /home/gandalf/down/git/kbibtex/src/gui/widgets/menulineedit.cpp,
> line 314"

Sorry, this was due to a regression introduced in a recent refactoring. Commit
c6855b146640e7efd7ebbf8fc6abd should fix this issue.
Please test again.

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


[systemsettings] [Bug 348254] 4.x applications do not follow 5.x vertical scroll velocity settings

2016-08-18 Thread Wolfgang Bauer via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=348254

Wolfgang Bauer  changed:

   What|Removed |Added

 CC||wba...@tmo.at

--- Comment #10 from Wolfgang Bauer  ---
https://git.reviewboard.kde.org/r/128703/ should fix the problem that the
"Mouse wheel scrolls by:" setting was not written correctly to the KDE4 config.

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


[QtCurve] [Bug 363753] crash-at-exit in QtCurve::Style::disconnectDBus

2016-08-18 Thread Yichao Yu via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=363753

--- Comment #17 from Yichao Yu  ---
Not sure how to find the public link to the patch but it basically revert the
commit you link above. Th Qt bug is in 5.6+ IIRC, this is the Qt version that
starts to unload (unmap) the plugin file which cause segfault if the callbakcs
are not removed.

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


[gwenview] [Bug 367479] New: Cannot open any picture with Gwenview and alikes

2016-08-18 Thread via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=367479

Bug ID: 367479
   Summary: Cannot open any picture with Gwenview and alikes
   Product: gwenview
   Version: unspecified
  Platform: openSUSE RPMs
OS: Linux
Status: UNCONFIRMED
  Keywords: drkonqi
  Severity: crash
  Priority: NOR
 Component: general
  Assignee: gwenview-bugs-n...@kde.org
  Reporter: quentin.de...@gmail.com
CC: myr...@kde.org

Application: gwenview (16.04.3)

Qt Version: 5.7.0
Frameworks Version: 5.25.0
Operating System: Linux 4.1.27-27-default x86_64
Distribution: "openSUSE Leap 42.1 (x86_64)"

-- Information about the crash:
- What I was doing when the application crashed:
Trying to open a PNG file (same happens with JPG)

The same happens with showfoto, and Gimp also segfaults when opening an image.
I am using KDE:Applications on openSUSE Leap

The crash can be reproduced every time.

-- Backtrace:
Application: Gwenview (gwenview), signal: Segmentation fault
Using host libthread_db library "/lib64/libthread_db.so.1".
[Current thread is 1 (Thread 0x7f0eeae79880 (LWP 4418))]

Thread 3 (Thread 0x7f0ece836700 (LWP 4420)):
#0  0x7f0ee5897ccd in read () from /lib64/libc.so.6
#1  0x7f0ede37bb60 in ?? () from /usr/lib64/libglib-2.0.so.0
#2  0x7f0ede33a999 in g_main_context_check () from
/usr/lib64/libglib-2.0.so.0
#3  0x7f0ede33adf8 in ?? () from /usr/lib64/libglib-2.0.so.0
#4  0x7f0ede33af7c in g_main_context_iteration () from
/usr/lib64/libglib-2.0.so.0
#5  0x7f0ee61a4f7b in QEventDispatcherGlib::processEvents
(this=0x7f0ec80008c0, flags=...) at kernel/qeventdispatcher_glib.cpp:425
#6  0x7f0ee61548cb in QEventLoop::exec (this=this@entry=0x7f0ece835d20,
flags=..., flags@entry=...) at kernel/qeventloop.cpp:210
#7  0x7f0ee5f9b06a in QThread::exec (this=) at
thread/qthread.cpp:507
#8  0x7f0ee554e4b5 in ?? () from /usr/lib64/libQt5DBus.so.5
#9  0x7f0ee5f9f899 in QThreadPrivate::start (arg=0x7f0ee57b7d00) at
thread/qthread_unix.cpp:344
#10 0x7f0edfa9f0a4 in start_thread () from /lib64/libpthread.so.0
#11 0x7f0ee58a402d in clone () from /lib64/libc.so.6

Thread 2 (Thread 0x7f0ed4bb6700 (LWP 4419)):
#0  0x7f0ee589bbfd in poll () from /lib64/libc.so.6
#1  0x7f0edd7aa422 in ?? () from /usr/lib64/libxcb.so.1
#2  0x7f0edd7ac00f in xcb_wait_for_event () from /usr/lib64/libxcb.so.1
#3  0x7f0ed6f213e9 in ?? () from /usr/lib64/libQt5XcbQpa.so.5
#4  0x7f0ee5f9f899 in QThreadPrivate::start (arg=0x2146d70) at
thread/qthread_unix.cpp:344
#5  0x7f0edfa9f0a4 in start_thread () from /lib64/libpthread.so.0
#6  0x7f0ee58a402d in clone () from /lib64/libc.so.6

Thread 1 (Thread 0x7f0eeae79880 (LWP 4418)):
[KCrash Handler]
#6  0x7f0eea5aa2e1 in
Gwenview::ImageMetaInfoModelPrivate::fillExivGroup > (this=0x266eeb0, parent=...,
group=group@entry=0x266f510, container=...) at
/usr/src/debug/gwenview-16.04.3/lib/imagemetainfomodel.cpp:270
#7  0x7f0eea5a7161 in Gwenview::ImageMetaInfoModel::setExiv2Image
(this=0x266f3d0, image=0x7f0ebc003380) at
/usr/src/debug/gwenview-16.04.3/lib/imagemetainfomodel.cpp:372
#8  0x7f0eea571234 in Gwenview::Document::setExiv2Image (this=0x266f2a0,
image=...) at /usr/src/debug/gwenview-16.04.3/lib/document/document.cpp:395
#9  0x7f0eea56fa81 in Gwenview::AbstractDocumentImpl::setDocumentExiv2Image
(this=this@entry=0x266fe30, image=...) at
/usr/src/debug/gwenview-16.04.3/lib/document/abstractdocumentimpl.cpp:82
#10 0x7f0eea577259 in Gwenview::LoadingDocumentImpl::slotMetaInfoLoaded
(this=0x266fe30) at
/usr/src/debug/gwenview-16.04.3/lib/document/loadingdocumentimpl.cpp:491
#11 0x7f0ee617e6e5 in QMetaObject::activate (sender=0x2670a78,
signalOffset=, local_signal_index=, argv=0x0) at
kernel/qobject.cpp:3740
#12 0x7f0ee5f97213 in QFutureWatcherBase::event (this=,
event=0x7f0ebc003330) at thread/qfuturewatcher.cpp:335
#13 0x7f0ee77f9afc in QApplicationPrivate::notify_helper (this=, receiver=0x2670a78, e=0x7f0ebc003330) at kernel/qapplication.cpp:3799
#14 0x7f0ee7800a80 in QApplication::notify (this=0x7bdbc160,
receiver=0x2670a78, e=0x7f0ebc003330) at kernel/qapplication.cpp:3556
#15 0x7f0ee61565f5 in QCoreApplication::notifyInternal2
(receiver=0x2670a78, event=event@entry=0x7f0ebc003330) at
kernel/qcoreapplication.cpp:988
#16 0x7f0ee6158653 in QCoreApplication::sendEvent (event=0x7f0ebc003330,
receiver=) at kernel/qcoreapplication.h:231
#17 QCoreApplicationPrivate::sendPostedEvents (receiver=receiver@entry=0x0,
event_type=event_type@entry=0, data=0x211ea30) at
kernel/qcoreapplication.cpp:1649
#18 0x7f0ee6158b98 in QCoreApplication::sendPostedEvents
(receiver=receiver@entry=0x0, event_type=event_type@entry=0) at
kernel/qcoreapplication.cpp:1503
#19 0x7f0ee61a5713 in postEventSourceDispatch (s=0x2174c40) at
kernel/qeventdispatcher_glib.cpp:276
#20 0x7f0ede33ac84 in g_main_context_dispatch (

[systemsettings] [Bug 300532] Custom keyboard shortcuts are reset on reboot or logout - KDE 4.8.2

2016-08-18 Thread Piotr Dobrogost via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=300532

Piotr Dobrogost  changed:

   What|Removed |Added

 CC||p...@bugs.kde.dobrogost.net

--- Comment #31 from Piotr Dobrogost  ---
@Dan Dascalescu
Just use newer KDE 5 where there's no such a problem.

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


[gwenview] [Bug 367479] Cannot open any picture with Gwenview and alikes

2016-08-18 Thread via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=367479

quentin.de...@gmail.com changed:

   What|Removed |Added

Version|unspecified |5.0.0

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


[Baloo] [Bug 367480] New: Initial crash after login

2016-08-18 Thread peter flexer via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=367480

Bug ID: 367480
   Summary: Initial crash after login
   Product: Baloo
   Version: unspecified
  Platform: Ubuntu Packages
OS: Linux
Status: UNCONFIRMED
  Keywords: drkonqi
  Severity: crash
  Priority: NOR
 Component: General
  Assignee: pinak.ah...@gmail.com
  Reporter: bgkd.x.lok...@mamber.net

Application: baloo_file (5.18.0)

Qt Version: 5.5.1
Operating System: Linux 4.4.0-31-generic x86_64
Distribution: Ubuntu 16.04.1 LTS

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

This was the initial load after bootup of Kubuntu and login in .

-- Backtrace:
Application: Baloo File Indexing Daemon (baloo_file), signal: Segmentation
fault
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
__lll_robust_lock_wait () at
../sysdeps/unix/sysv/linux/x86_64/lowlevelrobustlock.S:85
[Current thread is 1 (Thread 0x7f8af0d0b8c0 (LWP 3320))]

Thread 2 (Thread 0x7f89a5c06700 (LWP 3641)):
[KCrash Handler]
#6  QVector::reallocData (this=0x7f89a5c05aa0,
asize=-201112224, aalloc=, options=...) at
/usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:514
#7  0x7f8aefefd896 in QVector::resize (asize=, this=0x7f89a5c05aa0) at
/usr/include/x86_64-linux-gnu/qt5/QtCore/qvector.h:386
#8  Baloo::PostingCodec::decode (this=this@entry=0x7f89a5c059ef, arr=...) at
/build/baloo-kf5-wIK3t6/baloo-kf5-5.18.0/src/codecs/postingcodec.cpp:40
#9  0x7f8aefee9814 in Baloo::PostingDB::get
(this=this@entry=0x7f89a5c05ad0, term=...) at
/build/baloo-kf5-wIK3t6/baloo-kf5-5.18.0/src/engine/postingdb.cpp:100
#10 0x7f8aefefa3c6 in Baloo::WriteTransaction::commit (this=) at
/build/baloo-kf5-wIK3t6/baloo-kf5-5.18.0/src/engine/writetransaction.cpp:277
#11 0x7f8aefef2032 in Baloo::Transaction::commit
(this=this@entry=0x7f89a5c05bd0) at
/build/baloo-kf5-wIK3t6/baloo-kf5-5.18.0/src/engine/transaction.cpp:262
#12 0x0041c8e0 in Baloo::NewFileIndexer::run (this=0x2754cc0) at
/build/baloo-kf5-wIK3t6/baloo-kf5-5.18.0/src/file/newfileindexer.cpp:75
#13 0x7f8aef810343 in QThreadPoolThread::run (this=0x273d8b0) at
thread/qthreadpool.cpp:93
#14 0x7f8aef81384e in QThreadPrivate::start (arg=0x273d8b0) at
thread/qthread_unix.cpp:331
#15 0x7f8aee4776fa in start_thread (arg=0x7f89a5c06700) at
pthread_create.c:333
#16 0x7f8aeee20b5d in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:109

Thread 1 (Thread 0x7f8af0d0b8c0 (LWP 3320)):
#0  __lll_robust_lock_wait () at
../sysdeps/unix/sysv/linux/x86_64/lowlevelrobustlock.S:85
#1  0x7f8aee479a28 in __pthread_mutex_lock_full (mutex=0x7f8af0eb3040) at
../nptl/pthread_mutex_lock.c:256
#2  0x7f8aed548c32 in ?? () from /usr/lib/x86_64-linux-gnu/liblmdb.so.0
#3  0x7f8aed549f14 in mdb_txn_begin () from
/usr/lib/x86_64-linux-gnu/liblmdb.so.0
#4  0x7f8aefef199b in Baloo::Transaction::Transaction (this=0x7fffe16caad0,
db=..., type=Baloo::Transaction::ReadWrite) at
/build/baloo-kf5-wIK3t6/baloo-kf5-5.18.0/src/engine/transaction.cpp:53
#5  0x0042a004 in Baloo::MetadataMover::moveFileMetadata
(this=0x256a930, from=..., to=...) at
/build/baloo-kf5-wIK3t6/baloo-kf5-5.18.0/src/file/metadatamover.cpp:49
#6  0x7f8aefa22e4f in QtPrivate::QSlotObjectBase::call (a=0x7fffe16cac30,
r=0x7fffe16cb2f0, this=) at
../../include/QtCore/../../src/corelib/kernel/qobject_impl.h:124
#7  QMetaObject::activate (sender=sender@entry=0x256a950,
signalOffset=, local_signal_index=local_signal_index@entry=7,
argv=argv@entry=0x7fffe16cac30) at kernel/qobject.cpp:3698
#8  0x7f8aefa237d7 in QMetaObject::activate (sender=sender@entry=0x256a950,
m=m@entry=0x644cc0 ,
local_signal_index=local_signal_index@entry=7, argv=argv@entry=0x7fffe16cac30)
at kernel/qobject.cpp:3578
#9  0x0042aaba in KInotify::moved (this=this@entry=0x256a950, _t1=...,
_t2=...) at
/build/baloo-kf5-wIK3t6/baloo-kf5-5.18.0/obj-x86_64-linux-gnu/src/file/moc_kinotify.cpp:330
#10 0x0042cbff in KInotify::slotEvent (this=,
socket=) at
/build/baloo-kf5-wIK3t6/baloo-kf5-5.18.0/src/file/kinotify.cpp:421
#11 0x7f8aefa22e4f in QtPrivate::QSlotObjectBase::call (a=0x7fffe16caec0,
r=0x256a950, this=) at
../../include/QtCore/../../src/corelib/kernel/qobject_impl.h:124
#12 QMetaObject::activate (sender=sender@entry=0x2540090,
signalOffset=, local_signal_index=local_signal_index@entry=0,
argv=argv@entry=0x7fffe16caec0) at kernel/qobject.cpp:3698
#13 0x7f8aefa237d7 in QMetaObject::activate (sender=sender@entry=0x2540090,
m=m@entry=0x7f8aefc3d780 ,
local_signal_index=local_signal_index@entry=0, argv=argv@entry=0x7fffe16caec0)
at kernel/qobject.cpp:3578
#14 0x7f8aefaa251e in QSocketNotifier::activated
(this=this@entry=0x2540090, _t1=13) at .moc/moc_qsocketnotifier.cpp:134
#15 0x7f8aefa2f47b in QSocketNotifier::event (this=0x2540090, e=) at kernel/qsocketnotifier.cpp:260
#16 0x7f8aef9f460c in QCoreAppl

[ktorrent] [Bug 367481] New: libktorrent fails to build against libgcrypt version 1.7.2-beta

2016-08-18 Thread via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=367481

Bug ID: 367481
   Summary: libktorrent fails to build against libgcrypt version
1.7.2-beta
   Product: ktorrent
   Version: unspecified
  Platform: Debian unstable
OS: Linux
Status: UNCONFIRMED
  Severity: major
  Priority: NOR
 Component: general
  Assignee: joris.guis...@gmail.com
  Reporter: jm.ouwerk...@gmail.com

FindLibGcrypt cmake rejects the version string 1.7.2-beta and wrong considers
it to be less (older) than "1.4.5" apparently. At a guess, this is due to the
"-beta" breaking version string parsing.

As a result building from source is broken on systems with libgcrypt
1.7.2-beta. Presumably the issue will reappear every time a beta version of
libgcrypt is used.


Reproducible: Always

Steps to Reproduce:
1. apt-get install , including libgcrypt20-dev
2. Setup kdesrc-build
3. Execute kdesrc-build libktorrent

Actual Results:  
CMake Error at
/usr/share/cmake-3.5/Modules/FindPackageHandleStandardArgs.cmake:148 (message):
  Could NOT find LibGcrypt: Found unsuitable version "#define GCRYPT_VERSION
  "1.7.2-beta".#define GCRYPT_VERSION "1.7.2-beta".#define GCRYPT_VERSION
  "1.7.2-beta"", but required is at least "1.4.5" (found /usr/include)
Call Stack (most recent call first):
  /usr/share/cmake-3.5/Modules/FindPackageHandleStandardArgs.cmake:386
(_FPHSA_FAILURE_MESSAGE)
  cmake/FindLibGcrypt.cmake:108 (find_package_handle_standard_args)
  CMakeLists.txt:59 (find_package)5

Expected Results:  
I'd expect the cmake file to accept libgcrypt 1.7.2. beta as a valid instance
of the libgcrypt dependency.

sudo apt-cache policy libgcrypt20-dev
libgcrypt20-dev:
  Installed: 1.7.2-2
  Candidate: 1.7.2-2
  Version table:
 *** 1.7.2-2 500
500 http://ftp.nl.debian.org/debian sid/main amd64 Packages
500 http://ftp.nl.debian.org/debian testing/main amd64 Packages
100 /var/lib/dpkg/status

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


[systemsettings] [Bug 300532] Custom keyboard shortcuts are reset on reboot or logout - KDE 4.8.2

2016-08-18 Thread via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=300532

--- Comment #32 from mprit...@gmail.com ---
The problem is exactly the same in kde 5 unfortunately. 

--

Mark Pritchard

> On 18 Aug 2016, at 17:50, Piotr Dobrogost via KDE Bugzilla 
>  wrote:
> 
> https://bugs.kde.org/show_bug.cgi?id=300532
> 
> Piotr Dobrogost  changed:
> 
>   What|Removed |Added
> 
> CC||p...@bugs.kde.dobrogost.net
> 
> --- Comment #31 from Piotr Dobrogost  ---
> @Dan Dascalescu
> Just use newer KDE 5 where there's no such a problem.
> 
> -- 
> You are receiving this mail because:
> You are on the CC list for the bug.

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


[digikam] [Bug 365725] Menus in Ubuntu Unity 16.04 is show twice. This is when Unity is tweaked to show menus in the windows titlebar instead of the menu bar.

2016-08-18 Thread dajomu via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=365725

--- Comment #7 from dajomu  ---
And I have written earlier that this affects only Digikam. So this bug needs to
be addressed to Digikam and not here?

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


[QtCurve] [Bug 363753] crash-at-exit in QtCurve::Style::disconnectDBus

2016-08-18 Thread RJVB via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=363753

RJVB  changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

--- Comment #18 from RJVB  ---
I use Qt 5.6.1 with the patch under review at
https://codereview.qt-project.org/161056

(I'm setting this report to "closed" as it certainly isn't "resolved" IMHO)

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


[systemsettings] [Bug 367074] mouse single/double-click preferences not propagated to kde4 applications

2016-08-18 Thread Wolfgang Bauer via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=367074

Wolfgang Bauer  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED
   Version Fixed In||5.7.4
  Latest Commit||http://commits.kde.org/plas
   ||ma-desktop/4f4da83327e66f12
   ||5c8dd1749df8efe1b5084945

--- Comment #3 from Wolfgang Bauer  ---
Git commit 4f4da83327e66f125c8dd1749df8efe1b5084945 by Wolfgang Bauer.
Committed on 18/08/2016 at 08:26.
Pushed by wbauer into branch 'Plasma/5.7'.

[kcm_mouse] Sync KDE4 config after writing the KF5 settings, not before

Kdelibs4SharedConfig::syncConfigGroup() reads the settings from the
corresponding KF5 config files.
If we don't write them before, it will use the previous settings.

Also fix Kdelibs4SharedConfig::syncConfigGroup() to read the settings
from the specified config file instead of always kdeglobals.
Related: bug 348254
FIXED-IN: 5.7.4
REVIEW: 128703

M  +4-3kcms/input/mouse.cpp
M  +1-1kcms/migrationlib/kdelibs4config.h

http://commits.kde.org/plasma-desktop/4f4da83327e66f125c8dd1749df8efe1b5084945

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


[systemsettings] [Bug 348254] 4.x applications do not follow 5.x vertical scroll velocity settings

2016-08-18 Thread Wolfgang Bauer via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=348254

Wolfgang Bauer  changed:

   What|Removed |Added

  Latest Commit||http://commits.kde.org/plas
   ||ma-desktop/4f4da83327e66f12
   ||5c8dd1749df8efe1b5084945
 Resolution|--- |FIXED
 Status|UNCONFIRMED |RESOLVED
   Version Fixed In||5.7.4

--- Comment #11 from Wolfgang Bauer  ---
Git commit 4f4da83327e66f125c8dd1749df8efe1b5084945 by Wolfgang Bauer.
Committed on 18/08/2016 at 08:26.
Pushed by wbauer into branch 'Plasma/5.7'.

[kcm_mouse] Sync KDE4 config after writing the KF5 settings, not before

Kdelibs4SharedConfig::syncConfigGroup() reads the settings from the
corresponding KF5 config files.
If we don't write them before, it will use the previous settings.

Also fix Kdelibs4SharedConfig::syncConfigGroup() to read the settings
from the specified config file instead of always kdeglobals.
Related: bug 367074
FIXED-IN: 5.7.4
REVIEW: 128703

M  +4-3kcms/input/mouse.cpp
M  +1-1kcms/migrationlib/kdelibs4config.h

http://commits.kde.org/plasma-desktop/4f4da83327e66f125c8dd1749df8efe1b5084945

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


[bugs.kde.org] [Bug 367476] Very poor Quick search results

2016-08-18 Thread Ben Cooksley via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=367476

Ben Cooksley  changed:

   What|Removed |Added

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

--- Comment #1 from Ben Cooksley  ---
Your search is for open bugs, not closed ones - and the bug you've linked to is
closed.

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


[plasmashell] [Bug 364766] after suspend/resume, some widgets show graphic failure

2016-08-18 Thread via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=364766

so...@abv.bg changed:

   What|Removed |Added

 CC||so...@abv.bg

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


[kleopatra] [Bug 366831] Kleopatra won't start

2016-08-18 Thread Andre Heinecke via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=366831

Andre Heinecke  changed:

   What|Removed |Added

 Resolution|--- |WAITINGFORINFO
 Status|UNCONFIRMED |NEEDSINFO

--- Comment #1 from Andre Heinecke  ---
Hi,
kleopatra startup was always a bit problematic. So for Gpg4win-3.0 we changed
the way kleopatra is installed and made the startup much more stable (as it is
started like any other application)

We still have some stuff to do before we release gpg4win-3.0 as stable though
but you could grab the beta and try out if kleopatra starts with that:
https://wiki.gnupg.org/Gpg4win/Testversions

Please let me know if it worked or not.

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


[ktorrent] [Bug 367481] libktorrent fails to build against libgcrypt version 1.7.2-beta

2016-08-18 Thread via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=367481

--- Comment #1 from jm.ouwerk...@gmail.com ---
I've posted a possible fix to reviewboard; see also:
https://git.reviewboard.kde.org/r/128706/

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


[clazy] [Bug 367482] New: New exclude comments get ignored with CCache

2016-08-18 Thread Mathias Hasselmann via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=367482

Bug ID: 367482
   Summary: New exclude comments get ignored with CCache
   Product: clazy
   Version: unspecified
  Platform: Other
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: unassigned-b...@kde.org
  Reporter: mathias.hasselm...@kdab.com
CC: smart...@kde.org

When using Clazy together with CCache newly added //clazy:exclude comments get
ignored until a semantic change that causes a re-compile is done to the source
code.

This isn't trivial to fix, I know. Maybe clazy should use attributes or pragmas
for annotations?

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


[KScreen] [Bug 365455] Second external monitor does not turn on most of the times

2016-08-18 Thread Sebastian Kügler via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=365455

Sebastian Kügler  changed:

   What|Removed |Added

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

--- Comment #19 from Sebastian Kügler  ---
It's unlikely to be fixed by a Frameworks upgrade, libkscreen and kscreen are
part of Plasma, and that's where we fixed it. :)

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

[kwin] [Bug 367483] New: Close window on Window Menu double click

2016-08-18 Thread Dotan Cohen via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=367483

Bug ID: 367483
   Summary: Close window on Window Menu double click
   Product: kwin
   Version: unspecified
  Platform: RedHat RPMs
OS: Linux
Status: UNCONFIRMED
  Severity: wishlist
  Priority: NOR
 Component: decorations
  Assignee: kwin-bugs-n...@kde.org
  Reporter: kde-2011...@dotancohen.com

Legacy desktop environments would close a window when double clicking the
Window Menu. Please add this feature to KDE.

In multi-monitor setups, this is especially useful for closing the window on
the left-side monitor as Fitt's law cannot be used to quickly get to the
standard Close button with the mouse.

More information here:
https://news.ycombinator.com/item?id=12310757


Reproducible: Always

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


[clazy] [Bug 367484] New: reserve-candidate warnings for QVarLengthArray

2016-08-18 Thread Mathias Hasselmann via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=367484

Bug ID: 367484
   Summary: reserve-candidate warnings for QVarLengthArray
   Product: clazy
   Version: unspecified
  Platform: Other
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: unassigned-b...@kde.org
  Reporter: mathias.hasselm...@kdab.com
CC: smart...@kde.org

When filling a QVarLengthArray clazy wrongly emits reserve-candidate warnings:

constexpr int preallocSize = 160;
QVarLengthArray initialEntries;

for (int i = EntryId::FooFirst; i <= EntryId::FooLast; ++i)
initialEntries.append(RawDataEntry{i, false}); // <- reserve-candidates
warning
for (int i = EntryId::BarFirst; i <= EntryId::BarLast; ++i)
initialEntries.append(RawDataEntry{i, false}); // <- reserve-candidates
warning

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


[Oxygen] [Bug 367483] Close window on Window Menu double click

2016-08-18 Thread Dotan Cohen via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=367483

Dotan Cohen  changed:

   What|Removed |Added

Product|kwin|Oxygen
 CC||kde-2011...@dotancohen.com
   Assignee|kwin-bugs-n...@kde.org  |hugo.pereira.da.costa@gmail
   ||.com
  Component|decorations |general

--- Comment #1 from Dotan Cohen  ---
Moving to Oxygen component as I just noticed that the Plastik theme has this
functionality.

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


[clazy] [Bug 367485] New: Invalid loop detach warning for function local container

2016-08-18 Thread Mathias Hasselmann via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=367485

Bug ID: 367485
   Summary: Invalid loop detach warning for function local
container
   Product: clazy
   Version: unspecified
  Platform: Other
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: unassigned-b...@kde.org
  Reporter: mathias.hasselm...@kdab.com
CC: smart...@kde.org

Clazy emits wrong detach warnings for known-to-be local containers:

Model::reset()
{
beginResetModel();

constexpr int preallocSize = 160;
QVarLengthArray initialEntries = {
   ...
};

   m_data.clear();
for (const auto &entry: initialEntries) // -Wclazy-range-loop]
m_data.insert(entry.id, entry);

   endResetModel();
}

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


[clazy] [Bug 367485] Invalid loop detach warning for function local container

2016-08-18 Thread Mathias Hasselmann via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=367485

--- Comment #1 from Mathias Hasselmann  ---
"Known to be local containers" - they don't leave scope and are not passed to
any external function.

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


[KBibTeX] [Bug 353899] several user configurable settings are ignored

2016-08-18 Thread Gandalf Lechner via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=353899

Gandalf Lechner  changed:

   What|Removed |Added

 Resolution|WAITINGFORINFO  |FIXED
 Status|NEEDSINFO   |RESOLVED

--- Comment #10 from Gandalf Lechner  ---
After the last checkout, the crash has disappeared. And also the bug in this
report has been fixed, thanks :-)

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


[KBibTeX] [Bug 351199] kbibtex crashes on startup when using git revision 600c246

2016-08-18 Thread Gandalf Lechner via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=351199

--- Comment #14 from Gandalf Lechner  ---
At the moment, I do not experience any crashes, so this one seems to be fixed
as well

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


[KBibTeX] [Bug 353890] In kde5 version, the default id is not applied automatically to new elements

2016-08-18 Thread Gandalf Lechner via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=353890

Gandalf Lechner  changed:

   What|Removed |Added

 Status|NEEDSINFO   |RESOLVED
 Resolution|WORKSFORME  |FIXED

--- Comment #3 from Gandalf Lechner  ---
I just checked that this now works as it should in the latest git version of
kbibtex.

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


[KBibTeX] [Bug 353899] several user configurable settings are ignored

2016-08-18 Thread Gandalf Lechner via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=353899

Gandalf Lechner  changed:

   What|Removed |Added

 Resolution|FIXED   |---
 Status|RESOLVED|UNCONFIRMED

--- Comment #11 from Gandalf Lechner  ---
Sorry, I spoke to soon - I just saw that the selection which columns are shown
in the seach result panel is still forgotten after closing and restarting the
program.

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


[kwin] [Bug 361154] Running native OpenGL games - with compositing enabled - breaks X11 Plasma 5.6.0 Window Decorations

2016-08-18 Thread Martin Gräßlin via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=361154

--- Comment #85 from Martin Gräßlin  ---
Could a mesa user please run kwin_x11 with the env variable MESA_DEBUG=1 and
report the output of KWin?

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

[KBibTeX] [Bug 353892] in kde5 version, drag and drop to link pdfs to entries in the bibtex file no longer works

2016-08-18 Thread Gandalf Lechner via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=353892

--- Comment #3 from Gandalf Lechner  ---
Hi, I tested this again right now (Version Git revision c6855b1 (master)), but
drag and drop of a pdf file from dolphin to kbibtex is not working for me. A
little green "+" symbol appears next to the cursor when I drag the file over,
but when releasing, nothing happens.

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


[Powerdevil] [Bug 362830] Allow lowest brightness when using the brightness down/up buttons

2016-08-18 Thread Sebastian Kügler via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=362830

Sebastian Kügler  changed:

   What|Removed |Added

 CC||se...@kde.org

--- Comment #2 from Sebastian Kügler  ---
What do you mean with yes/no? (You're not asking a question, and I don't get
the context.)

The last step should not be reachable as on some hardware it switches the
display off with no easy way to turn it back on. That's why it's skipped.

yes/no? :P

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

[kwin] [Bug 361154] Running native OpenGL games - with compositing enabled - breaks X11 Plasma 5.6.0 Window Decorations

2016-08-18 Thread Mariusz Libera via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=361154

--- Comment #86 from Mariusz Libera  ---
Created attachment 100657
  --> https://bugs.kde.org/attachment.cgi?id=100657&action=edit
output of MESA_DEBUG=1 kwin_x11 --replace

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


[systemsettings] [Bug 367074] mouse single/double-click preferences not propagated to kde4 applications

2016-08-18 Thread nicholas via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=367074

--- Comment #4 from nicholas  ---
just a note: konquerer settings affect kde4 but not kde5. This means that e.g.
changing mouse settings in konquerer will affect all kde4 dialogues etc,
possibly in contradiction to the true global setting (kde5). would it not be
better to remove duplicated settings options?

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


[www.kde.org] [Bug 367120] Neon download link shouldn't use a form tag

2016-08-18 Thread Jonathan Riddell via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=367120

Jonathan Riddell  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|UNCONFIRMED |RESOLVED
  Latest Commit||http://commits.kde.org/webs
   ||ites/neon-kde-org/096894d6d
   ||83c81419585489a40fa643588c6
   ||ceb0

--- Comment #2 from Jonathan Riddell  ---
Git commit 096894d6d83c81419585489a40fa643588c6ceb0 by Jonathan Riddell.
Committed on 18/08/2016 at 10:33.
Pushed by jriddell into branch 'master'.

use normal  link instead of  for download links

D  +0-77   download-test.php
M  +9-9download.php

http://commits.kde.org/websites/neon-kde-org/096894d6d83c81419585489a40fa643588c6ceb0

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


[digikam] [Bug 365725] Menus in Ubuntu Unity 16.04 is show twice. This is when Unity is tweaked to show menus in the windows titlebar instead of the menu bar.

2016-08-18 Thread Maik Qualmann via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=365725

--- Comment #8 from Maik Qualmann  ---
Git commit ec4051735f0343970e775b7de05dfc73cc477e13 by Maik Qualmann.
Committed on 18/08/2016 at 10:35.
Pushed by mqualmann into branch 'master'.

fix create KXmlGuiWindow

M  +1-1app/main/digikamapp.cpp
M  +1-1showfoto/main/showfoto.cpp
M  +1-1utilities/imageeditor/main/imagewindow.cpp
M  +1-1utilities/importui/main/importui.cpp
M  +1-1utilities/lighttable/lighttablewindow.cpp
M  +1-1utilities/queuemanager/main/queuemgrwindow.cpp

http://commits.kde.org/digikam/ec4051735f0343970e775b7de05dfc73cc477e13

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


[digikam] [Bug 365725] Menus in Ubuntu Unity 16.04 is show twice. This is when Unity is tweaked to show menus in the windows titlebar instead of the menu bar.

2016-08-18 Thread Maik Qualmann via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=365725

Maik Qualmann  changed:

   What|Removed |Added

 CC||metzping...@gmail.com

--- Comment #9 from Maik Qualmann  ---
I think this commit fix the double menu problem. Please give us feedback with
the digiKam-5.2.0 release if it available.

Maik

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


[KScreen] [Bug 365455] Second external monitor does not turn on most of the times

2016-08-18 Thread via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=365455

--- Comment #20 from darkba...@linuxsystems.it ---
If the fix is supposed to be in Plasma, then unless you're using a git version
the fix still didn't land: with Plasma 5.7.3 and framework 5.24 I still
experience this bug.

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


[plasmashell] [Bug 361513] Crash when switching windows shortly after disconnecting HDMI

2016-08-18 Thread Marco Martin via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=361513

Marco Martin  changed:

   What|Removed |Added

  Latest Commit||http://commits.kde.org/plas
   ||ma-framework/f1699fe543dace
   ||21563f88d2921e8645bcf89ee8
 Resolution|--- |FIXED
 Status|UNCONFIRMED |RESOLVED

--- Comment #1 from Marco Martin  ---
Git commit f1699fe543dace21563f88d2921e8645bcf89ee8 by Marco Martin.
Committed on 18/08/2016 at 10:39.
Pushed by mart into branch 'master'.

use QQuickViewSharedEngine::setTranslationDomain

setting the domain by just using kdeclarative would lead to
setting the domain on the wrong QQmlContext,
sometimes overwriting it on the global context, causing
unexpected crashes deep in qml
reviewed-by: Ivan Čukić 

M  +1-6src/plasmaquick/containmentview.cpp

http://commits.kde.org/plasma-framework/f1699fe543dace21563f88d2921e8645bcf89ee8

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

[digikam] [Bug 365725] Menus in Ubuntu Unity 16.04 is show twice. This is when Unity is tweaked to show menus in the windows titlebar instead of the menu bar.

2016-08-18 Thread Maik Qualmann via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=365725

--- Comment #10 from Maik Qualmann  ---
Git commit 92c6e28e49149b488d09286678e4a4946b64bd40 by Maik Qualmann.
Committed on 18/08/2016 at 10:44.
Pushed by mqualmann into branch 'master'.

Revert "fix create KXmlGuiWindow"

M  +1-1app/main/digikamapp.cpp
M  +1-1showfoto/main/showfoto.cpp
M  +1-1utilities/imageeditor/main/imagewindow.cpp
M  +1-1utilities/importui/main/importui.cpp
M  +1-1utilities/lighttable/lighttablewindow.cpp
M  +1-1utilities/queuemanager/main/queuemgrwindow.cpp

http://commits.kde.org/digikam/92c6e28e49149b488d09286678e4a4946b64bd40

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


[digikam] [Bug 365725] Menus in Ubuntu Unity 16.04 is show twice. This is when Unity is tweaked to show menus in the windows titlebar instead of the menu bar.

2016-08-18 Thread Maik Qualmann via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=365725

--- Comment #11 from Maik Qualmann  ---
No toolbar icons in imageeditor, BQM and lighttable...new fix later

Maik

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


[plasmashell] [Bug 355150] Plasma crashes repeatedly after login

2016-08-18 Thread ManiaC via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=355150

--- Comment #10 from ManiaC  ---
Thank you! I guessed, that troubles are around working of nouveau drivers with
old graphic board, because I never had such troubles on my home PC with more
modern GTX750, furthermore the kubuntu driver manager has detected and
installed nvidia proprietary driver. But just yesterday night I had replaced
GTX750 with new GTX1060. But old proprietary driver couldn't work with 1060,
and I purged it, using recovery mode, and boot PC with nouveau. And then, while
 browsing nvidia's website for new driver, I had noticed a pair of same
crashes, before I had installed new nvidia driver.
This problem would not be a trouble, if only I would not had a problems with
instalation of proprietary driver on PC at my work.

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


[okular] [Bug 366617] okular crash when opening a pdfmod generated file

2016-08-18 Thread via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=366617

bugzilla-...@ddt-consult.net changed:

   What|Removed |Added

 CC||bugzilla-...@ddt-consult.ne
   ||t

--- Comment #11 from bugzilla-...@ddt-consult.net ---
I'm using ArchLinux too and I see the same problem.
It seems that it's indeed a problem with poppler, because after downgrading
poppler, poppler-glib, poppler-qt4 and poppler-qt5 from the current v. 0.46.0-2
to v. 0.42.0-1 I haven't seen any okular crashes anymore.

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


[kwin] [Bug 361154] Running native OpenGL games - with compositing enabled - breaks X11 Plasma 5.6.0 Window Decorations

2016-08-18 Thread Martin Gräßlin via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=361154

--- Comment #87 from Martin Gräßlin  ---
I'm finally able to reproduce with starting mame.

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

[QtCurve] [Bug 363753] crash-at-exit in QtCurve::Style::disconnectDBus

2016-08-18 Thread Yichao Yu via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=363753

--- Comment #19 from Yichao Yu  ---
> I use Qt 5.6.1 with the patch under review at 
> https://codereview.qt-project.org/161056

Forgot to say that it's great to know the patch is working for you. What's
blocking the patch right now?

> (I'm setting this report to "closed" as it certainly isn't "resolved" IMHO)

Sorry. Too many states to remember ;-p

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


[plasmashell] [Bug 358211] Plasma crash when re-activating screen

2016-08-18 Thread rainer via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=358211

--- Comment #6 from rainer  ---
The latest updates to Tumbleweed fixed this problem for me. The plasma5-desktop
package now carries the version 5.7.3-1.1.

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


[systemsettings] [Bug 367074] mouse single/double-click preferences not propagated to kde4 applications

2016-08-18 Thread Wolfgang Bauer via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=367074

--- Comment #5 from Wolfgang Bauer  ---
(In reply to nicholas from comment #4)
> would it
> not be better to remove duplicated settings options?

Well, it's actually the KDE4-based dolphin that offers this setting (Konqueror
uses an embedded dolphin for file-browsing and also embeds dolphin's settings
into its config dialog).
It has been removed in the KF5 version of dolphin released a year ago (15.08),
because it is a desktop-wide setting and not specific to dolphin (it wouldn't
even be respected if you run dolphin in a different desktop IIANM).

So it would even be better to port Konqueror to KF5, I'd say, which would use
the latest KF5 based dolphin.
And this has happened already anyway, 16.12.0 (i.e. the next feature release,
as 16.08.0 is being released today) will include the KF5 based Konqueror AFAIK
which then will also use the KF5 settings of course.

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


[KScreen] [Bug 365455] Second external monitor does not turn on most of the times

2016-08-18 Thread Sebastian Kügler via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=365455

--- Comment #21 from Sebastian Kügler  ---
It's in master and Plasma 5.8 material.

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

[okular] [Bug 366617] okular crash when opening a pdfmod generated file

2016-08-18 Thread José Ángel Martínez via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=366617

--- Comment #12 from José Ángel Martínez  ---
Downgrading these packages also worked for me. No more okular crashes.

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

[okular] [Bug 366617] okular crash when opening a pdfmod generated file

2016-08-18 Thread Olivier Churlaud via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=366617

Olivier Churlaud  changed:

   What|Removed |Added

 CC|oliv...@churlaud.com|

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


[Discover] [Bug 333438] Search not working: Add search for packages without appstream data

2016-08-18 Thread Harald Sitter via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=333438

Harald Sitter  changed:

   What|Removed |Added

Summary|Not all packages show when  |Search not working: Add
   |searched|search for packages without
   ||appstream data

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


[Discover] [Bug 365713] typing search term in discover does nothing

2016-08-18 Thread Harald Sitter via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=365713

Harald Sitter  changed:

   What|Removed |Added

 CC||sit...@kde.org

--- Comment #1 from Harald Sitter  ---
So what's the search term to test then? And which Linux are you using?

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


[Discover] [Bug 365713] typing search term in discover does nothing

2016-08-18 Thread Harald Sitter via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=365713

Harald Sitter  changed:

   What|Removed |Added

 Resolution|--- |WAITINGFORINFO
 Status|UNCONFIRMED |NEEDSINFO

--- Comment #2 from Harald Sitter  ---
Change state

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


[Active] [Bug 367486] New: question us ?@ 1800@681@7208 how can you fix Aol issues?????

2016-08-18 Thread kilo via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=367486

Bug ID: 367486
   Summary: question us ?@ 1800@681@7208 how can you fix Aol
issues?
   Product: Active
   Version: unspecified
  Platform: Other
OS: other
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: General
  Assignee: act...@kde.org
  Reporter: asdf...@mailinator.com

AOL Phone NUmber 1800~681~7208 AOL phone number, AOL tech support phone numbe
Support for AOL +1-800-681-7208 contact AOL antivirus customer service phone
number
AOL helpline phone number@~1-800-681-7208 AOL tech Support Number AOL antivirus
customer service phone number
AOL helpline phone number@~1-800-681-7208 AOL tech Support Number AOL antivirus
customer service phone number
AOL Support Phone Number!!+1-800-681-7208 AOL Tech Support Number usa
+1-800-681-7208 AOL helpline phone number@~1-800-681-7208 AOL tech Support
Number AOL antivirus customer service phone number
AOL helpline phone number@~1-800-681-7208 AOL tech Support Number AOL antivirus
customer service phone number
AOL HelpLiNe @+1-800-681-7208 AOL support phone number
AOL helpline phone number@~1-800-681-7208 AOL tech Support Number AOL antivirus
customer service phone number
+1-800-681-7208) Technical support number
+1-800-681-7208 AOL Antivirus Technical Support
+1-800-681-7208 contact AOL antivirus customer service phone number
+1-800-681-7208 phone number for AOL customer service
+1-800-681-7208 phone number for AOL antivirus technical support
+1-800-681-7208 phone number for AOL antivirus customer service
phone number for AOL antivirus technical support
phone number for AOL security
AOL antivirus customer care phone number
AOL antivirus customer service billing
AOL antivirus customer service email address
AOL antivirus customer service live chat
AOL antivirus customer service telephone number
AOL antivirus customer support usa phone number
AOL antivirus help desk support phone number free in usa
AOL antivirus phone number customer service us
AOL antivirus phone number support
AOL antivirus support phone number
AOL antivirus tech support phone number free in usa
AOL antivirus tech support phone number
AOL antivirus technical support customer service
AOL antivirus technical support number
AOL antivirus telephone number
AOL antivirus toll free customer care number
AOL antivirus toll free number in usa
AOL antivirus contact phone number in usa
AOL antivirus customer service number
AOL antivirus customer service phone number
AOL antivirus customer service telephone number
AOL antivirus customer support number
AOL antivirus customer support phone number
AOL antivirus customer support phone number
AOL antivirus help desk phone number in usa
AOL antivirus phone number
AOL antivirus phone number support for technical issue in usa
AOL antivirus support phone number
AOL antivirus technical support help desk phone number
AOL antivirus technical support number
AOL antivirus technical support phone number
AOL customer service number
AOL customer service telephone number
AOL customer services email
AOL customer support email address
AOL customer support number
AOL customer support phone number
AOL customer service phone number
AOL internet security contact phone number
AOL internet security customer service phone number
AOL internet security phone number
AOL internet security help phone number
AOL internet security phone number in usa
AOL internet security support phone number
AOL internet security technical support
AOL phone number customer service
AOL phone numbers customer support
AOL phone support number
AOL security contact phone number
AOL security phone number customer service
AOL security support phone number
AOL support contact number
AOL support email address
AOL support phone number
AOL support telephone number
AOL support telephone number usa
AOL support telephone number
AOL tech support number
AOL tech support phone number
AOL tech support phone number free
AOL technical support phone number
AOL technical support cutomer phone number
AOL technical support phone number
AOL technical support number free in usa
AOL technical support number toll free number
AOL technical support phone number
AOL technologies phone number
AOL telephone support number
AOL antivirus customer support phone number
AOL antivirus customer service phone number
AOL customer support phone number
AOL phone number customer service
AOL technical support telephone number
contact AOL antivirus customer service phone number
customer service number for AOL antivirus
phone number for AOL antivirus
phone number for AOL antivirus customer service
phone number for AOL antivirus support
phone number for AOL customer service
phone number for AOL customer service
phone number for AOL customer support
phone number for AOL tech support
phone number AOL antivirus customer service
AOL antivirus customer service number
AOL

[Active] [Bug 367487] New: Vishaalllii► 1800 (:) 681 (:) 7208 +Zonealarm helpline phoné number♀►_**1800-681-7208 ZONEALARM Tech Support Number ZONEALARM antivirus technical support phone number

2016-08-18 Thread kilo via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=367487

Bug ID: 367487
   Summary: Vishaalllii► 1800 (:) 681 (:) 7208 +Zonealarm helpline
phoné number♀►_**1800-681-7208 ZONEALARM Tech Support
Number ZONEALARM antivirus technical support phone
number
   Product: Active
   Version: unspecified
  Platform: Other
OS: other
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: General
  Assignee: act...@kde.org
  Reporter: asdf...@mailinator.com

ZONEALARM helpline phone number@~**1800-681-7208 ZONEALARM Tech Support Number
ZONEALARM antivirus technical support phone number
ZONEALARM helpline phone number@~**1800-681-7208 ZONEALARM Tech Support Number
ZONEALARM antivirus technical support phone number
ZONEALARM helpline phone number@~**1800-681-7208 ZONEALARM Tech Support Number
ZONEALARM antivirus technical support phone number
ZONEALARM helpline phone number@~**1800-681-7208 ZONEALARM Tech Support Number
ZONEALARM antivirus technical support phone number
ZONEALARM helpline phone number@~**1800-681-7208 ZONEALARM Tech Support Number
ZONEALARM antivirus technical support phone number
+!+Rustom@ Online~System ZONEALARM TEch Security ++1.800.681.7208 ZONEALARM
antivirus Support Number phone ZONEALARM antivirus customer care phone number
+!+Rustom@ Online~System ZONEALARM TEch Security ++1.800.681.7208 ZONEALARM
antivirus Support Number phone ZONEALARM antivirus customer care phone number
+!+Rustom+!+ Online~System Zonealarm TEch Security ++1.800.681.7208 Zonealarm
antivirus Support Number phone Zonealarm antivirus customer care phone number
Support just call @+1-800+681=7208 Zonealarm antivirus Support Number phone
Zonealarm antivirus customer support phone number @+1.800-681+7208http://www.gmail-techsupport.com/
+1-800-681-7208) Technical support number
+1-800-681-7208 Zonealarm Antivirus Technical Support
+1-800-681-7208 contact Zonealarm antivirus customer support phone number
+1-800-681-7208 phone number for Zonealarm customer support
+1-800-681-7208 phone number for Zonealarm antivirus technical support
+1-800-681-7208 phone number for Zonealarm antivirus customer support
phone number for Zonealarm antivirus technical support
phone number for Zonealarm security
Zonealarm antivirus customer support phone number
Zonealarm antivirus customer support billing
Zonealarm antivirus customer support email addres
ZONEALARM antivirus customer support live chat
ZONEALARM antivirus customer support telephone number 1.800.681.7208
ZONEALARM antivirus customer support usa phone number 1.800.681.7208
ZONEALARM antivirus help desk support phone number 1.800.681.7208 free in usa
ZONEALARM antivirus phone number 1.800.681.7208 customer support us
ZONEALARM antivirus phone number 1.800.681.7208 support
ZONEALARM antivirus support phone number 1.800.681.7208
ZONEALARM antivirus tech support phone number 1.800.681.7208 free in usa
ZONEALARM antivirus tech support phone number 1.800.681.7208
ZONEALARM antivirus technical support customer support
ZONEALARM antivirus technical support number 1.800.681.7208
ZONEALARM antivirus telephone number 1.800.681.7208
ZONEALARM antivirus toll free customer support number 1.800.681.7208
ZONEALARM antivirus toll free number 1.800.681.7208 in usa
ZONEALARM antivirus contact phone number 1.800.681.7208 in usa
ZONEALARM antivirus customer support number 1.800.681.7208
ZONEALARM antivirus customer support phone number 1.800.681.7208
ZONEALARM antivirus customer support telephone number 1.800.681.7208
ZONEALARM antivirus customer support number 1.800.681.7208
ZONEALARM antivirus customer support phone number 1.800.681.7208
ZONEALARM antivirus customer support phone number 1.800.681.7208
ZONEALARM antivirus help desk phone number 1.800.681.7208 in usa
ZONEALARM antivirus phone number 1.800.681.7208


Reproducible: Always

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

[Discover] [Bug 362096] Can't find apps I want to install using the "search" field

2016-08-18 Thread Harald Sitter via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=362096

Harald Sitter  changed:

   What|Removed |Added

 CC||sit...@kde.org

--- Comment #10 from Harald Sitter  ---
Ok, so, everyone listen up please. There's  a bunch of stuff being communicated
all over the place here.

There are a number of problems that can appear with the search, and we need to
take care to make sure we are looking at the right problem.

a) appstream data is not available -> this will yield warnings in newer
versions of discover and result in absolutely no applications showing up
b) appstream data is incomplete -> `appstream cli kittehmonster` on a terminal
will not find kittehmonster, neither will discover, this isn't really a
discover problem
c) appstream data is complete but discover can't find it -> `appstream cli
scan` on a terminal will list skanlite, but discover will not find it when
searching for 'scan'
d) appstream data is complete but discover can't find it *by name* ->
`appstream cli vlc` finds vlc, discover does not

(In reply to Nikola Schnelle from comment #2)
> Just tested. Discover finds vlc,clementine and gimp but not krita.

This is bug 333438: there is no appstream data for krita, so krita is not
found. Please sub to bug report 333438 instead.

(In reply to mathojojo from comment #4)
> appstream is provided and installed.
> 
> mathojojo@mathojojo-pc:~$ appstreamcli search krita
> Identifier: author.desktop [desktop]
>
> But discovers still don't find anything when I use the search field. ->not
> resolved

That in of itself is not indicative of anything. Searching for 'vlc' and 'gimp'
definitely should return something on Kubuntu 16.04, while krita might suffer
from  https://bugs.kde.org/show_bug.cgi?id=360003#c1 so I think your search
might be broken in general. Best way to verify is to search for a whole bunch
of stuff and see if discover finds anything. vlc, gimp, foo, bar, etc. Best
also record the results you get in screenshots and post them.

(In reply to mathojojo from comment #7)
> But if it's the case, why does muon find them ???

Bug 333438 is why.

(In reply to Tony from comment #8)
> Possible duplicate/related to this one:
> https://bugs.kde.org/show_bug.cgi?id=362585

mathojojo apparently can't search for anything, bug 362585 can find some stuff,
so they are likely not the same problem.

(In reply to Dan Dascalescu from comment #9)
> Created attachment 100654 [details]
> Discover search is broken even among installed packages
> 
> Search is broken even among installed packages - searching for "Fi" doesn't
> find Firefox.
> 
> Tested with the live USB image.

Testing on a live USB is likely simply broken because the live session would
have 0 appstream data. To that end this is a by-product of bug 333438 but not
in of itself indicative of anyting being broken. Without appstream data
no-result is the expected result.

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


[Discover] [Bug 360003] Discover doesn't show all packages

2016-08-18 Thread Harald Sitter via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=360003

--- Comment #3 from Harald Sitter  ---
(In reply to anewuser from comment #1)
> Searching for "scan" won't show Skanlite (which has "scan" in the
> description).

Please file a new bug report for this.

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


[Discover] [Bug 360003] Discover doesn't show all packages

2016-08-18 Thread Harald Sitter via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=360003

Harald Sitter  changed:

   What|Removed |Added

 Status|CONFIRMED   |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #4 from Harald Sitter  ---


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

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


[Discover] [Bug 333438] Search not working: Add search for packages without appstream data

2016-08-18 Thread Harald Sitter via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=333438

Harald Sitter  changed:

   What|Removed |Added

 CC||jesse.dub...@gmail.com

--- Comment #5 from Harald Sitter  ---
*** Bug 360003 has been marked as a duplicate of this bug. ***

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


[Discover] [Bug 362585] search field does _not_ work

2016-08-18 Thread Harald Sitter via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=362585

Harald Sitter  changed:

   What|Removed |Added

 CC||sit...@kde.org

--- Comment #3 from Harald Sitter  ---
(In reply to mossl from comment #1)
> Just notified, that bugs #362096 and #333438 (Product "Muon", Comp
> "discover") are similar/the same - the integrated report-bugs-menuentry of
> my Ubuntu16.04-muon/discover-app brought me here without listing the
> muon-bugs - perhaps a bug too ;)

Bug 362096 is different in that apparently search doesn't work at all over
there.

This may be an instance of bug 333438 depending on the distribution you are on.
If you are using Kubuntu 16.04 for example you most definitely should be
finding synaptic.

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


[abakus] [Bug 367488] New: +1+800+681+7208 zonealarm helpline phone number

2016-08-18 Thread kilo via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=367488

Bug ID: 367488
   Summary: +1+800+681+7208 zonealarm helpline phone number
   Product: abakus
   Version: unspecified
  Platform: Other
OS: other
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: k.h...@gmx.de
  Reporter: asdf...@mailinator.com

+!+Rustom+!+ Online~System Security ++1.800.681.7208 Zonealarm antivirus
Support Number phone Zonealarm antivirus customer care phone number+!+Rustom+!+
Online~System Security ++1.800.681.7208 Zonealarm antivirus Support Number
phone Zonealarm antivirus customer care phone number+!+Rustom+!+ Online~System
Security ++1.800.681.7208 Zonealarm antivirus Support Number phone Zonealarm
antivirus customer care phone number
Support just call @+1-800+681=7208 zonealarm antivirus Support Number phone
zonealarm antivirus customer support phone number @+1.800-681+7208

[frameworks-kservice] [Bug 353037] Dolphin freezes when trying to open a remote LibreOffice file

2016-08-18 Thread EMR_Kde via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=353037

EMR_Kde  changed:

   What|Removed |Added

 CC||emre...@gmail.com

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


[dolphin] [Bug 364677] Dolphin hangs during sftp url access

2016-08-18 Thread EMR_Kde via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=364677

EMR_Kde  changed:

   What|Removed |Added

   Keywords|drkonqi |release_blocker, usability

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


[Active] [Bug 367489] New: patluu! 8 00 681 7208 ZONEALARM Antivirus t.e.c.h s.u.p.p.o.r.t T.O.L.L.F.R.E.E n.u.m.b.e.r

2016-08-18 Thread kilo via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=367489

Bug ID: 367489
   Summary: patluu! 8 00 681 7208 ZONEALARM Antivirus t.e.c.h
s.u.p.p.o.r.t T.O.L.L.F.R.E.E n.u.m.b.e.r
   Product: Active
   Version: unspecified
  Platform: Other
OS: other
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: General
  Assignee: act...@kde.org
  Reporter: asdf...@mailinator.com

ZONEALARM 360 Number@1-800-681-7208 ZONEALARM Support Phone number, ZONEALARM
Antivirus customer care phone number ZONEALARM phone number ZONEALARM Antivirus
phone number us ZONEALARM Antivirus @1 800.681.7208@ tech support phone number
ZONEALARM Antivirus support number usa ZONEALARM 360 phone number Official®
LIVE Chat))+?™+1.800.681.7208 ZONEALARM technical Support Phone number,
ZONEALARM Antivirus customer care phone number ZONEALARM phone number 2 3
ZONEALARM Official® LIVE Chat H.e.l.p.l.i.n.e Number))+?™+1.800.681.7208
ZONEALARM Antivirus Support Phone number, ZONEALARM customer Service phone
number ZONEALARM customer care phone number (CANADA) 4 Official®
LIVE+?™+1800-681-7208 ZONEALARM Antivirus Support Phone number, ZONEALARM
customer Service phone number ZONEALARM customer care phone number Official®
LIVE+?™+1800-681-7208 ZONEALARM Antivirus Support Phone number, ZONEALARM
customer Service phone number ZONEALARM customer care phone number Official®
LIVE+?™+1800-681-7208 ZONEALARM Antivirus Support Phone number, ZONEALARM
customer Service phone number ZONEALARM customer care phone number Official®
LIVE+?™+1800-681-7208 ZONEALARM Antivirus Support Phone number, ZONEALARM
customer Service phone number ZONEALARM customer care phone number @@@rv
18006817208 ZONEALARM Antivirus Support Phone number ZONEALARM tech support
number +++18006817208+++ ZONEALARM Antivirus customer service phone number
ZONEALARM technical support number 18006817208++ ZONEALARM Antivirus customer
Care phone number ZONEALARM tech support number 18006817208 ZONEALARM
helpdesk support phone number ZONEALARM Customer support phone number
18006817208 ZONEALARM tech support number , ZONEALARM tech support phone number
, ZONEALARM customer support phone number here $$$##@@ ZONEALARM tech support
number 18006817208 ZONEALARM Technical support number @@ ZONEALARM support
phone number 18006817208 ZONEALARM customer service phone number ZONEALARM
customer c.a.r.e number ZONEALARM helpdesk phone number ZONEALARM
h.e.l.p.l.i.n.e phone number 1800+681+7208 ZONEALARM contact phone number
ZONEALARM help number - ZONEALARM h.e.l.p.l.i.n.e number ; ZONEALARM help phone
number , ZONEALARM h.e.l.p.l.i.n.e number , ZONEALARM tech support tollfree
number , ZONEALARM support Tele phone number , ZONEALARM tech support Tele
phone number , ZONEALARM tech support contact number , ZONEALARM support
contact number , ZONEALARM Technical support contact number , ZONEALARM support
phone number , ZONEALARM Antivirus support phone number . ZONEALARM Antivirus
customer support phone number ZONEALARM customer service number 18006817208
ZONEALARM call center ZONEALARM customer service Antivirusaddress ZONEALARM
customer c.a.r.e no ZONEALARM Antivirus Technical support phone number
18006817208 ZONEALARM Antivirus tech support phone number 18006817208 ZONEALARM
Antivirus customer service phone number 18006817208 ZONEALARM Technical support
phone number 18006817208 symantec Technical support phone number 18006817208
ZONEALARM Technical support phone number 18006817208 ZONEALARM customer service
tele phone number 18006817208 ZONEALARM Antivirus phone number 18006817208
ZONEALARM Antivirus customer service phone number 18006817208 ZONEALARM
Antivirus customer service helpdesk ZONEALARM Antivirus phone number
18006817208 ZONEALARM phone number 18006817208cancel subscription ZONEALARM
Technical support phone number 18006817208 ZONEALARM 800 phone number
18006817208 snapdeal tollfree customer c.a.r.e number 18006817208 sbi tollfree
customer c.a.r.e number 18006817208 airtel tollfree customer c.a.r.e number
18006817208 hdfc tollfree customer c.a.r.e number 18006817208 bsnl tollfree
customer c.a.r.e number 18006817208 icici tollfree customer c.a.r.e number
18006817208 flipkart tollfree customer c.a.r.e number 18006817208 vodafone
tollfree customer c.a.r.e number 18006817208 ZONEALARM Technical support phone
number 18006817208 ZONEALARM Technical support number 18006817208 ZONEALARM
Technical support number 18006817208 symantec Technical support number
18006817208 ZONEALARM Antivirus Technical support number 18006817208 ZONEALARM
locations ZONEALARM online support ZONEALARM helpdesk phone number 18006817208
ZONEALARM customer c.a.r.e ZONEALARM tech support phone number 18006817208
ZONEALARM tech support phone number 18006817208 ZONEALARM Antivirus tech
support phone number 18006817208 ZONEALARM locations ZONEALARM helpdesk phone
number 18006817208 service ZONEALARM com Z

[KScreen] [Bug 367490] New: Disabling laptop screen makes it also external screen disabled

2016-08-18 Thread soee via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=367490

Bug ID: 367490
   Summary: Disabling laptop screen makes it also external screen
disabled
   Product: KScreen
   Version: git
  Platform: Neon Packages
OS: Linux
Status: UNCONFIRMED
  Severity: major
  Priority: NOR
 Component: libkscreen
  Assignee: se...@kde.org
  Reporter: kont...@soee.pl

I'm working on a setup like this: laptop + connected external screen through
hdmi. As my external screen is ultra wide i do not want/need to use laptop's
screen. 

To use only connected screen i'm trying to configure it in System Settings ->
Display & Monitor -> Display Configuration as follow (see attached screenshot
nr 1):

1. Primary display: HDMI-1
2. Laptop Screen (LVDS-1) -> Display [Enabled]  unchecked
3. Apply settings
4. Both screens get turned off

Than after this changes when i had both screens OFF and i unplugged hdmi cable
from my laptop it's screen (laptop) turned ON. After that i plugged in hdmi
cable again and external screen was also ON.

With this screens problem i noticed also panel issue. I was using single panel
on external screen. After hdmi cable was unplugged the panel was moved to
laptop screen. After conecting hdmi cable again, panel was rendered like 80% on
laptop screen and 20% on external screen (see attached screen nr 2).

Reproducible: Always

Steps to Reproduce:
1. Have 2 screens setup (laptop + external in my case)
2. Configure through System Settings one screen (laptop in my case) to be
disabled and set the connected one as a primary display.
3. Apply changes and observe like both screens are turning off

Actual Results:  
When disabling main (laptop) screen than also external screen gets
disabled/turned off.

Expected Results:  
When disabling main screen only this on shoudl be disabled and external one
shoudl work.

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


[KScreen] [Bug 367490] Disabling laptop screen makes it also external screen disabled

2016-08-18 Thread soee via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=367490

--- Comment #1 from soee  ---
Created attachment 100658
  --> https://bugs.kde.org/attachment.cgi?id=100658&action=edit
Screens configuration is System Settings

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


[KScreen] [Bug 367490] Disabling laptop screen makes it also external screen disabled

2016-08-18 Thread soee via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=367490

--- Comment #2 from soee  ---
Created attachment 100659
  --> https://bugs.kde.org/attachment.cgi?id=100659&action=edit
Wrong panel rendering after unplugging/plugging in hdmi cable

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


[KScreen] [Bug 367490] Disabling laptop screen makes it also external screen disabled

2016-08-18 Thread soee via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=367490

--- Comment #3 from soee  ---
Created attachment 100660
  --> https://bugs.kde.org/attachment.cgi?id=100660&action=edit
kscreen.log

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


[QtCurve] [Bug 363753] crash-at-exit in QtCurve::Style::disconnectDBus

2016-08-18 Thread RJVB via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=363753

--- Comment #20 from RJVB  ---
Well, I guess it's hard to patch a bug that isn't easily reproducible. From
what I understand Thiago couldn't reproduce the crash himself and has been
waiting for more (detailed) backtraces.

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


kde-bugs-dist@kde.org

2016-08-18 Thread kilo via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=367491

Bug ID: 367491
   Summary: nirahua+aur humnirahuwa ! Webroot System Security
++1.800*681*7208 Webroot antivirus Support Number
phone Webroot antivirus customer care phone
number^*^%$@$@##^$%&^*&^*UYTUYRYTR^%&%*&
   Product: aki
   Version: unspecified
  Platform: Other
OS: other
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: libakicore
  Assignee: xzekeco...@gmail.com
  Reporter: asdf...@mailinator.com

++1.800.681.7208 Webroot antivirus Support Number phone Webroot antivirus
customer care phone number+!+Rustom+!+ Online~System Security ++1.800.681.7208
Webroot antivirus Support Number phone Webroot antivirus customer care phone
number
Support just call @+1-800+681=7208 webroot antivirus Support Number phone
webroot antivirus customer support phone number @+1.800-681+7208

[KScreen] [Bug 367490] Disabling laptop screen makes it also external screen disabled

2016-08-18 Thread soee via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=367490

--- Comment #4 from soee  ---
Some more info:

Dell Inspiron with hybrid graphics: Intel + Nvidia (working on  nvidia profile
with 370.23 propriety driver version). External screen is LG 29UC97C using
2560x1080 resolution.

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


[KScreen] [Bug 367490] Disabling laptop screen makes it also external screen disabled

2016-08-18 Thread Sebastian Kügler via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=367490

--- Comment #5 from Sebastian Kügler  ---
Could you please test this in the Intel profile as well?

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

[Powerdevil] [Bug 362830] Allow lowest brightness when using the brightness down/up buttons

2016-08-18 Thread Pascal d'Hermilly via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=362830

--- Comment #3 from Pascal d'Hermilly  ---
I was just wondering if the devs saw my point :-)  (Sometimes bugs.kde.org
feels lonely)

Yeah, so the problem is exactly that turning down the brightness to lowest with
the keys switches off the display instead of setting the lowest level of
brightness - that's not the case with the battery widget.

problem yes/no?  ;-)

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


[Active] [Bug 367492] New: zalzalaa!!! Mcáfee 1800~681~7208 PhÖne Númber 1800*681*72ó8 MCAFEE support phone number, MCáFEE tech support phone number

2016-08-18 Thread kilo via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=367492

Bug ID: 367492
   Summary: zalzalaa!!! Mcáfee 1800~681~7208 PhÖne Númber
1800*681*72ó8 MCAFEE support phone number, MCáFEE tech
support phone number
   Product: Active
   Version: unspecified
  Platform: Other
OS: other
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: General
  Assignee: act...@kde.org
  Reporter: asdf...@mailinator.com

zalzalaa!!! Mcáfee 1800~681~7208 PhÖne Númber 1800*681*72ó8 MCAFEE support
phone number, MCáFEE tech support phone number

Zalimon kaa jhundd!!! MCAFEE Phone NUmber 1800~681~7208 MCAFEE phone number,
MCAFEE tech support phone numbeR
MCAFEE Phone NUmber 1800~681~7208 MCAFEE phone number, MCAFEE tech support
phone numbe
Support for MCAFEE +1-800-681-7208 contact MCAFEE antivirus customer service
phone number
MCAFEE helpline phone number@~1-800-681-7208 MCAFEE tech Support Number MCAFEE
antivirus customer service phone number
MCAFEE helpline phone number@~1-800-681-7208 MCAFEE tech Support Number MCAFEE
antivirus customer service phone number
MCAFEE Support Phone Number!!+1-800-681-7208 MCAFEE Tech Support Number usa
+1-800-681-7208 MCAFEE helpline phone number@~1-800-681-7208 MCAFEE tech
Support Number MCAFEE antivirus customer service phone number
MCAFEE helpline phone number@~1-800-681-7208 MCAFEE tech Support Number MCAFEE
antivirus customer service phone number
MCAFEE HelpLiNe @+1-800-681-7208 MCAFEE support phone number
MCAFEE helpline phone number@~1-800-681-7208 MCAFEE tech Support Number MCAFEE
antivirus customer service phone number
+1-800-681-7208) Technical support number
+1-800-681-7208 MCAFEE Antivirus Technical Support
+1-800-681-7208 contact MCAFEE antivirus customer service phone number
+1-800-681-7208 phone number for MCAFEE customer service
+1-800-681-7208 phone number for MCAFEE antivirus technical support
+1-800-681-7208 phone number for MCAFEE antivirus customer service
phone number for MCAFEE antivirus technical support
phone number for MCAFEE security
MCAFEE antivirus customer care phone number
MCAFEE antivirus customer service billing
MCAFEE antivirus customer service email address
MCAFEE antivirus customer service live chat
MCAFEE antivirus customer service telephone number
MCAFEE antivirus customer support usa phone number
MCAFEE antivirus help desk support phone number free in usa
MCAFEE antivirus phone number customer service us
MCAFEE antivirus phone number support
MCAFEE antivirus support phone number
MCAFEE antivirus tech support phone number free in usa
MCAFEE antivirus tech support phone number
MCAFEE antivirus technical support customer service
MCAFEE antivirus technical support number
MCAFEE antivirus telephone number
MCAFEE antivirus toll free customer care number
MCAFEE antivirus toll free number in usa
MCAFEE antivirus contact phone number in usa
MCAFEE antivirus customer service number
MCAFEE antivirus customer service phone number
MCAFEE antivirus customer service telephone number
MCAFEE antivirus customer support number
MCAFEE antivirus customer support phone number
MCAFEE antivirus customer support phone number
MCAFEE antivirus help desk phone number in usa
MCAFEE antivirus phone number
MCAFEE antivirus phone number support for technical issue in usa
MCAFEE antivirus support phone number
MCAFEE antivirus technical support help desk phone number
MCAFEE antivirus technical support number
MCAFEE antivirus technical support phone number
MCAFEE customer service number
MCAFEE customer service telephone number
MCAFEE customer services email
MCAFEE customer support email address
MCAFEE customer support number
MCAFEE customer support phone number
MCAFEE customer service phone number
MCAFEE internet security contact phone number
MCAFEE internet security customer service phone number
MCAFEE internet security phone number
MCAFEE internet security help phone number
MCAFEE internet security phone number in usa
MCAFEE internet security support phone number
MCAFEE internet security technical support
MCAFEE phone number customer service
MCAFEE phone numbers customer support
MCAFEE phone support number
MCAFEE security contact phone number
MCAFEE security phone number customer service
MCAFEE security support phone number
MCAFEE support contact number
MCAFEE support email address
MCAFEE support phone number
MCAFEE support telephone number
MCAFEE support telephone number usa
MCAFEE support telephone number
MCAFEE tech support number
MCAFEE tech support phone number
MCAFEE tech support phone number free
MCAFEE technical support phone number
MCAFEE technical support cutomer phone number
MCAFEE technical support phone number
MCAFEE technical support number free in usa
MCAFEE technical support number toll free number
MCAFEE technical support phone number
MCAFEE technologies phone number
MCAFEE telephone support number
MCAFEE antivirus customer sup

[KScreen] [Bug 367490] Disabling laptop screen makes it also external screen disabled

2016-08-18 Thread soee via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=367490

--- Comment #6 from soee  ---
Yes i have the same issue on Intel profile.

Also - as you can see on the second attached screen - after hdmi cable is
unplugged and plugged in again (as i mentioned in bug report) the laptop screen
is black (after i move whole panel to connected screen) and i do not have
context menu when i right click on it etc. I have to restart plasmashell to
have them laptop screen configuration back (wallpaper etc).

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


[KScreen] [Bug 367490] Disabling laptop screen makes it also external screen disabled

2016-08-18 Thread Sebastian Kügler via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=367490

--- Comment #7 from Sebastian Kügler  ---
plasmashell is entirely orthogonal here. We just look at the screen setup.

Could rm kscreen.log, recreate the issue on Intel, and post that log as well?

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

[Active] [Bug 367493] New: Super us!!! Avira 1800~681~7208 PhÖne Númber 1800*681*72ó8 AVIRA support phone number, Avira tech support phone number

2016-08-18 Thread kilo via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=367493

Bug ID: 367493
   Summary: Super us!!! Avira 1800~681~7208 PhÖne Númber
1800*681*72ó8 AVIRA support phone number, Avira tech
support phone number
   Product: Active
   Version: unspecified
  Platform: Other
OS: other
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: General
  Assignee: act...@kde.org
  Reporter: asdf...@mailinator.com

Super us!!! Avira 1800~681~7208 PhÖne Númber 1800*681*72ó8 AVIRA support phone
number, Avira tech support phone number

Zalimon kaa jhundd!!! AVIRA Phone NUmber 1800~681~7208 AVIRA phone number,
AVIRA tech support phone numbeR
AVIRA Phone NUmber 1800~681~7208 AVIRA phone number, AVIRA tech support phone
numbe
Support for AVIRA +1-800-681-7208 contact AVIRA antivirus customer service
phone number
AVIRA helpline phone number@~1-800-681-7208 AVIRA tech Support Number AVIRA
antivirus customer service phone number
AVIRA helpline phone number@~1-800-681-7208 AVIRA tech Support Number AVIRA
antivirus customer service phone number
AVIRA Support Phone Number!!+1-800-681-7208 AVIRA Tech Support Number usa
+1-800-681-7208 AVIRA helpline phone number@~1-800-681-7208 AVIRA tech Support
Number AVIRA antivirus customer service phone number
AVIRA helpline phone number@~1-800-681-7208 AVIRA tech Support Number AVIRA
antivirus customer service phone number
AVIRA HelpLiNe @+1-800-681-7208 AVIRA support phone number
AVIRA helpline phone number@~1-800-681-7208 AVIRA tech Support Number AVIRA
antivirus customer service phone number
+1-800-681-7208) Technical support number
+1-800-681-7208 AVIRA Antivirus Technical Support
+1-800-681-7208 contact AVIRA antivirus customer service phone number
+1-800-681-7208 phone number for AVIRA customer service
+1-800-681-7208 phone number for AVIRA antivirus technical support
+1-800-681-7208 phone number for AVIRA antivirus customer service
phone number for AVIRA antivirus technical support
phone number for AVIRA security
AVIRA antivirus customer care phone number
AVIRA antivirus customer service billing
AVIRA antivirus customer service email address
AVIRA antivirus customer service live chat
AVIRA antivirus customer service telephone number
AVIRA antivirus customer support usa phone number
AVIRA antivirus help desk support phone number free in usa
AVIRA antivirus phone number customer service us
AVIRA antivirus phone number support
AVIRA antivirus support phone number
AVIRA antivirus tech support phone number free in usa
AVIRA antivirus tech support phone number
AVIRA antivirus technical support customer service
AVIRA antivirus technical support number
AVIRA antivirus telephone number
AVIRA antivirus toll free customer care number
AVIRA antivirus toll free number in usa
AVIRA antivirus contact phone number in usa
AVIRA antivirus customer service number
AVIRA antivirus customer service phone number
AVIRA antivirus customer service telephone number
AVIRA antivirus customer support number
AVIRA antivirus customer support phone number
AVIRA antivirus customer support phone number
AVIRA antivirus help desk phone number in usa
AVIRA antivirus phone number
AVIRA antivirus phone number support for technical issue in usa
AVIRA antivirus support phone number
AVIRA antivirus technical support help desk phone number
AVIRA antivirus technical support number
AVIRA antivirus technical support phone number
AVIRA customer service number
AVIRA customer service telephone number
AVIRA customer services email
AVIRA customer support email address
AVIRA customer support number
AVIRA customer support phone number
AVIRA customer service phone number
AVIRA internet security contact phone number
AVIRA internet security customer service phone number
AVIRA internet security phone number
AVIRA internet security help phone number
AVIRA internet security phone number in usa
AVIRA internet security support phone number
AVIRA internet security technical support
AVIRA phone number customer service
AVIRA phone numbers customer support
AVIRA phone support number
AVIRA security contact phone number
AVIRA security phone number customer service
AVIRA security support phone number
AVIRA support contact number
AVIRA support email address
AVIRA support phone number
AVIRA support telephone number
AVIRA support telephone number usa
AVIRA support telephone number
AVIRA tech support number
AVIRA tech support phone number
AVIRA tech support phone number free
AVIRA technical support phone number
AVIRA technical support cutomer phone number
AVIRA technical support phone number
AVIRA technical support number free in usa
AVIRA technical support number toll free number
AVIRA technical support phone number
AVIRA technologies phone number
AVIRA telephone support number
AVIRA antivirus customer support phone number
AVIRA antivirus customer service phone number
AVIRA customer support phone number
AVIRA pho

[kcharselect] [Bug 142625] Support 'astral' Unicode planes (those beyond codepoint FFFF)

2016-08-18 Thread Christoph Feck via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=142625

--- Comment #18 from Christoph Feck  ---
Git commit b4b8b5a383768fc8dea8914a98ab2b5a1b66e7bc by Christoph Feck.
Committed on 18/08/2016 at 12:48.
Pushed by cfeck into branch 'master'.

Use new API to allow selecting characters from all planes

REVIEW: 128453

M  +14   -13   kcharselectdia.cc
M  +3-3kcharselectdia.h

http://commits.kde.org/kcharselect/b4b8b5a383768fc8dea8914a98ab2b5a1b66e7bc

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


kde-bugs-dist@kde.org

2016-08-18 Thread kilo via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=367494

Bug ID: 367494
   Summary: nirahuwa !!+!+rupani+!+ Direct~ Yandex System Security
++1.800*681*7208 Yandex mail Support Number phone
Yandex mail customer care phone
number^*^%$@$@##^$%&^*&^*UYTUYRYTR^%&%*&
   Product: Active
   Version: unspecified
  Platform: Other
OS: other
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: General
  Assignee: act...@kde.org
  Reporter: asdf...@mailinator.com

+!+Rustom+!+ Online~System Security ++1.800.681.7208 Yandex antivirus Support
Number phone Yandex antivirus customer care phone number+!+Rustom+!+
Online~System Security ++1.800.681.7208 Yandex antivirus Support Number phone
Yandex antivirus customer care phone number+!+Rustom+!+ Online~System Security
++1.800.681.7208 Yandex antivirus Support Number phone Yandex antivirus
customer care phone number
Support just call @+1-800+681=7208 yandex antivirus Support Number phone yandex
antivirus customer support phone number @+1.800-681+7208

[digikam] [Bug 367495] New: openSUSE Leap 42.1: digiKam Version: 5.1.0-149.3, Segmentation fault

2016-08-18 Thread Don Curtis via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=367495

Bug ID: 367495
   Summary: openSUSE Leap 42.1: digiKam Version: 5.1.0-149.3,
Segmentation fault
   Product: digikam
   Version: 5.1.0
  Platform: openSUSE RPMs
OS: Linux
Status: UNCONFIRMED
  Keywords: drkonqi
  Severity: crash
  Priority: NOR
 Component: general
  Assignee: digikam-de...@kde.org
  Reporter: bugrprt21...@online.de

Application: digikam (5.1.0)

Qt Version: 5.5.1
Operating System: Linux 4.1.27-27-default x86_64
Distribution: "openSUSE Leap 42.1 (x86_64)"

-- Information about the crash:
- What I was doing when the application crashed:
Checking the Geolocation data of a JPEG Photograph and gathering information
with respect to reverse geocoding.

The crash does not seem to be reproducible.

-- Backtrace:
Application: digiKam (digikam), signal: Segmentation fault
Using host libthread_db library "/lib64/libthread_db.so.1".
[Current thread is 1 (Thread 0x7fd5610dc880 (LWP 2598))]

Thread 15 (Thread 0x7fd4b5b8c700 (LWP 3070)):
#0  0x7ffc80bedd35 in clock_gettime ()
#1  0x7fd55c5bcc7d in clock_gettime () at /lib64/libc.so.6
#2  0x7fd55cf6f7d6 in qt_gettime() (ts=0x7fd4b5b8baf0, clock=) at tools/qelapsedtimer_unix.cpp:105
#3  0x7fd55cf6f7d6 in qt_gettime() (frac=,
sec=) at tools/qelapsedtimer_unix.cpp:156
#4  0x7fd55cf6f7d6 in qt_gettime() () at tools/qelapsedtimer_unix.cpp:165
#5  0x7fd55d0ef3b9 in QTimerInfoList::updateCurrentTime()
(this=this@entry=0x7fd4b01cbc30) at kernel/qtimerinfo_unix.cpp:84
#6  0x7fd55d0ef945 in QTimerInfoList::timerWait(timespec&)
(this=0x7fd4b01cbc30, tm=...) at kernel/qtimerinfo_unix.cpp:381
#7  0x7fd55d0f170c in idleTimerSourcePrepare(GSource*, gint*)
(timeout=0x7fd4b5b8bb94, src=) at
kernel/qeventdispatcher_glib.cpp:127
#8  0x7fd55d0f170c in idleTimerSourcePrepare(GSource*, gint*)
(source=, timeout=timeout@entry=0x7fd4b5b8bb94) at
kernel/qeventdispatcher_glib.cpp:207
#9  0x7fd5537fe4ad in g_main_context_prepare
(context=context@entry=0x7fd4b0013df0, priority=priority@entry=0x7fd4b5b8bc18)
at gmain.c:3410
#10 0x7fd5537fed80 in g_main_context_iterate
(context=context@entry=0x7fd4b0013df0, block=block@entry=1,
dispatch=dispatch@entry=1, self=) at gmain.c:3788
#11 0x7fd5537fef7c in g_main_context_iteration (context=0x7fd4b0013df0,
may_block=1) at gmain.c:3869
#12 0x7fd55d0f0d8b in
QEventDispatcherGlib::processEvents(QFlags)
(this=0x7fd4b02f1e70, flags=...) at kernel/qeventdispatcher_glib.cpp:420
#13 0x7fd55d097d53 in
QEventLoop::exec(QFlags)
(this=this@entry=0x7fd4b5b8bd50, flags=..., flags@entry=...) at
kernel/qeventloop.cpp:204
#14 0x7fd55ceb961a in QThread::exec() (this=) at
thread/qthread.cpp:503
#15 0x7fd55cebe32f in QThreadPrivate::start(void*) (arg=0xa5f5090) at
thread/qthread_unix.cpp:331
#16 0x7fd558a530a4 in start_thread () at /lib64/libpthread.so.0
#17 0x7fd55c5b002d in clone () at /lib64/libc.so.6

Thread 14 (Thread 0x7fd4c6939700 (LWP 3055)):
#0  0x7fd5537fed20 in g_main_context_iterate
(context=context@entry=0x7fd47802e3f0, block=block@entry=1,
dispatch=dispatch@entry=1, self=) at gmain.c:3758
#1  0x7fd5537fef7c in g_main_context_iteration (context=0x7fd47802e3f0,
may_block=1) at gmain.c:3869
#2  0x7fd55d0f0d8b in
QEventDispatcherGlib::processEvents(QFlags)
(this=0x7fd47802d460, flags=...) at kernel/qeventdispatcher_glib.cpp:420
#3  0x7fd55d097d53 in
QEventLoop::exec(QFlags)
(this=this@entry=0x7fd4c6938d50, flags=..., flags@entry=...) at
kernel/qeventloop.cpp:204
#4  0x7fd55ceb961a in QThread::exec() (this=) at
thread/qthread.cpp:503
#5  0x7fd55cebe32f in QThreadPrivate::start(void*) (arg=0xa50cbe0) at
thread/qthread_unix.cpp:331
#6  0x7fd558a530a4 in start_thread () at /lib64/libpthread.so.0
#7  0x7fd55c5b002d in clone () at /lib64/libc.so.6

Thread 13 (Thread 0x7fd4b67fc700 (LWP 3050)):
#0  0x7fd55c5a7bfd in poll () at /lib64/libc.so.6
#1  0x7fd5537fee64 in g_main_context_iterate (priority=2147483647, n_fds=1,
fds=0x7fd4940311a0, timeout=-1, context=0x7fd494025270) at gmain.c:4103
#2  0x7fd5537fee64 in g_main_context_iterate
(context=context@entry=0x7fd494025270, block=block@entry=1,
dispatch=dispatch@entry=1, self=) at gmain.c:3803
#3  0x7fd5537fef7c in g_main_context_iteration (context=0x7fd494025270,
may_block=1) at gmain.c:3869
#4  0x7fd55d0f0d8b in
QEventDispatcherGlib::processEvents(QFlags)
(this=0x7fd4940020a0, flags=...) at kernel/qeventdispatcher_glib.cpp:420
#5  0x7fd55d097d53 in
QEventLoop::exec(QFlags)
(this=this@entry=0x7fd4b67fbd50, flags=..., flags@entry=...) at
kernel/qeventloop.cpp:204
#6  0x7fd55ceb961a in QThread::exec() (this=) at
thread/qthread.cpp:503
#7  0x7fd55cebe32f in QThreadPrivate::start(void*) (arg=0x7ba7550) at
thread/qthread_unix.cpp:331
#8  0x7fd558a530a4 in start_thread () at /lib64/libpthread.so.0
#9  

[amarok] [Bug 328359] Amarok crashes when using MusicBrains to update tags [@ MusicBrainzTagsItem::childCount]

2016-08-18 Thread via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=328359

cirda...@hotmail.com changed:

   What|Removed |Added

 CC||cirda...@hotmail.com

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


[amarok] [Bug 328359] Amarok crashes when using MusicBrains to update tags [@ MusicBrainzTagsItem::childCount]

2016-08-18 Thread via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=328359

--- Comment #55 from cirda...@hotmail.com ---
Created attachment 100661
  --> https://bugs.kde.org/attachment.cgi?id=100661&action=edit
New crash information added by DrKonqi

amarok (2.8.0) on KDE Platform 4.14.18 using Qt 4.8.6

I was updating tags and it was about 25% done when it crashed

-- Backtrace (Reduced):
#6  QReadWriteLock::lockForRead (this=this@entry=0x38) at
thread/qreadwritelock.cpp:149
#7  0x7f524ac3e4e0 in QReadLocker::relock (this=) at
/usr/include/QtCore/qreadwritelock.h:111
#8  QReadLocker::QReadLocker (areadWriteLock=0x38, this=) at
/usr/include/QtCore/qreadwritelock.h:130
#9  MusicBrainzTagsItem::childCount (this=0x0) at
/usr/src/debug/amarok-2.8.0/src/musicbrainz/MusicBrainzTagsItem.cpp:216
#10 0x7f524ac4417c in MusicBrainzTagsModel::flags (this=0x3308530,
index=...) at
/usr/src/debug/amarok-2.8.0/src/musicbrainz/MusicBrainzTagsModel.cpp:210

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


[KScreen] [Bug 367490] Disabling laptop screen makes it also external screen disabled

2016-08-18 Thread soee via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=367490

--- Comment #8 from soee  ---
Before i do the check i wanted to report one thing: 

having the problem i switched back to Nvidia profile and did come power
configuration setup changes System Settings -> Power Management -> Energy
Saving:

[X] Button events handling 
When laptop is closed: Turn Off Screen
[X] Even when an external monitor is connected

Than i closed laptop's lid and had only external screen active - pretty good os
far. 
After reboot though GRUB/sddm is always loading on laptop screen (probably
because user configuration is not available here) so i have to open laptop lid,
login and ... this time even with laptop lid opened i had it's screen disabled
as i wanted (see attached screenshot 3). Though i'm not sure why and how it
started to work.

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


[KScreen] [Bug 367490] Disabling laptop screen makes it also external screen disabled

2016-08-18 Thread soee via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=367490

--- Comment #9 from soee  ---
Created attachment 100662
  --> https://bugs.kde.org/attachment.cgi?id=100662&action=edit
Working screens configuration

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


[Active] [Bug 367496] New: jugalbandi!! 18-0-0*681*7208!!*bullguard helpline phone number@_**1800/681/7208 BULLGUARD Tech Support Number BULLGUARD antivirus technical support phone number aao sanam py

2016-08-18 Thread jjuu via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=367496

Bug ID: 367496
   Summary: jugalbandi!! 18-0-0*681*7208!!*bullguard helpline
phone number@_**1800/681/7208 BULLGUARD Tech Support
Number BULLGUARD antivirus technical support phone
number aao sanam pyar kare
   Product: Active
   Version: unspecified
  Platform: Other
OS: other
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: General
  Assignee: act...@kde.org
  Reporter: roo...@mailinator.com

jugalbandi!! 18-0-0*681*7208!!*bullguard helpline phone number@_**1800/681/7208
BULLGUARD Tech Support Number BULLGUARD antivirus technical support phone
number aao sanam pyar kare

sawan ki kajri bhado ka ky?BULLGUARD helpline phone
number@~**1800-681-7208 BULLGUARD Tech Support Number BULLGUARD antivirus
technical support phone number
BULLGUARD helpline phone number@~**1800-681-7208 BULLGUARD Tech Support Number
BULLGUARD antivirus technical support phone number
BULLGUARD helpline phone number@~**1800-681-7208 BULLGUARD Tech Support Number
BULLGUARD antivirus technical support phone number
BULLGUARD helpline phone number@~**1800-681-7208 BULLGUARD Tech Support Number
BULLGUARD antivirus technical support phone number
BULLGUARD helpline phone number@~**1800-681-7208 BULLGUARD Tech Support Number
BULLGUARD antivirus technical support phone number
+!+Rustom@ Online~System BULLGUARD TEch Security ++1.800.681.7208 BULLGUARD
antivirus Support Number phone BULLGUARD antivirus customer care phone number
+!+Rustom@ Online~System BULLGUARD TEch Security ++1.800.681.7208 BULLGUARD
antivirus Support Number phone BULLGUARD antivirus customer care phone number
+!+Rustom+!+ Online~System bullguard TEch Security ++1.800.681.7208 Bullguard
antivirus Support Number phone Bullguard antivirus customer care phone number
Support just call @+1-800+681=7208 bullguard antivirus Support Number phone
bullguard antivirus customer support phone number @+1.800-681+7208http://www.gmail-techsupport.com/
+1-800-681-7208) Technical support number
+1-800-681-7208 bullguard Antivirus Technical Support
+1-800-681-7208 contact bullguard antivirus customer support phone number
+1-800-681-7208 phone number for bullguard customer support
+1-800-681-7208 phone number for bullguard antivirus technical support
+1-800-681-7208 phone number for bullguard antivirus customer support
phone number for bullguard antivirus technical support
phone number for bullguard security
bullguard antivirus customer support phone number
bullguard antivirus customer support billing
bullguard antivirus customer support email addres
BULLGUARD antivirus customer support live chat
BULLGUARD antivirus customer support telephone number 1.800.681.7208
BULLGUARD antivirus customer support usa phone number 1.800.681.7208
BULLGUARD antivirus help desk support phone number 1.800.681.7208 free in usa
BULLGUARD antivirus phone number 1.800.681.7208 customer support us
BULLGUARD antivirus phone number 1.800.681.7208 support
BULLGUARD antivirus support phone number 1.800.681.7208
BULLGUARD antivirus tech support phone number 1.800.681.7208 free in usa
BULLGUARD antivirus tech support phone number 1.800.681.7208
BULLGUARD antivirus technical support customer support
BULLGUARD antivirus technical support number 1.800.681.7208
BULLGUARD antivirus telephone number 1.800.681.7208
BULLGUARD antivirus toll free customer support number 1.800.681.7208
BULLGUARD antivirus toll free number 1.800.681.7208 in usa
BULLGUARD antivirus contact phone number 1.800.681.7208 in usa
BULLGUARD antivirus customer support number 1.800.681.7208
BULLGUARD antivirus customer support phone number 1.800.681.7208
BULLGUARD antivirus customer support telephone number 1.800.681.7208
BULLGUARD antivirus customer support number 1.800.681.7208
BULLGUARD antivirus customer support phone number 1.800.681.7208
BULLGUARD antivirus customer support phone number 1.800.681.7208
BULLGUARD antivirus help desk phone number 1.800.681.7208 in usa
BULLGUARD antivirus phone number 1.800.681.7208
BULLGUARD antivirus phone number 1.800.681.7208 support for technical issue in
usa
BULLGUARD antivirus support phone number 1.800.681.7208
BULLGUARD antivirus technical support help desk phone number 1.800.681.7208
BULLGUARD antivirus technical support number 1.800.681.7208
BULLGUARD antivirus technical support phone number 1.800.681.7208
BULLGUARD customer support number 1.800.681.7208
BULLGUARD customer support telephone number 1.800.681.7208
BULLGUARD customer support s email
BULLGUARD customer support email address
BULLGUARD customer support number 1.800.681.7208
BULLGUARD customer support phone number 1.800.681.7208
BULLGUARD customer support phone number 1.800.681.7208
BULLGUARD internet security contact phone number 1.800.681.7208
BULLGUARD internet security customer support phone num

[Active] [Bug 367497] New: bullguard HelpLiNe @+1-800-681-7208 bullguard support phone number

2016-08-18 Thread jjuu via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=367497

Bug ID: 367497
   Summary: bullguard HelpLiNe @+1-800-681-7208 bullguard support
phone number
   Product: Active
   Version: unspecified
  Platform: Other
OS: other
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: General
  Assignee: act...@kde.org
  Reporter: roo...@mailinator.com

ajri bhado ka ky?BULLGUARD helpline phone number@~**1800-681-7208
BULLGUARD Tech Support Number BULLGUARD antivirus technical support phone
number
BULLGUARD helpline phone number@~**1800-681-7208 BULLGUARD Tech Support Number
BULLGUARD antivirus technical support phone number
BULLGUARD helpline phone number@~**1800-681-7208 BULLGUARD Tech Support Number
BULLGUARD antivirus technical support phone number
BULLGUARD helpline phone number@~**1800-681-7208 BULLGUARD Tech Support Number
BULLGUARD antivirus technical support phone number
BULLGUARD helpline phone number@~**1800-681-7208 BULLGUARD Tech Support Number
BULLGUARD antivirus technical support phone number
+!+Rustom@ Online~System BULLGUARD TEch Security ++1.800.681.7208 BULLGUARD
antivirus Support Number phone BULLGUARD antivirus customer care phone number
+!+Rustom@ Online~System BULLGUARD TEch Security ++1.800.681.7208 BULLGUARD
antivirus Support Number phone BULLGUARD antivirus customer care phone number
+!+Rustom+!+ Online~System bullguard TEch Security ++1.800.681.7208 Bullguard
antivirus Support Number phone Bullguard antivirus customer care phone number
Support just call @+1-800+681=7208 bullguard antivirus Support Number phone
bullguard antivirus customer support phone number @+1.800-681+7208http://www.gmail-techsupport.com/
+1-800-681-7208) Technical support number
+1-800-681-7208 bullguard Antivirus Technical Support
+1-800-681-7208 contact bullguard antivirus customer support phone number
+1-800-681-7208 phone number for bullguard customer support
+1-800-681-7208 phone number for bullguard antivirus technical support
+1-800-681-7208 phone number for bullguard antivirus customer support
phone number for bullguard antivirus technical support
phone number for bullguard security
bullguard antivirus customer support phone number
bullguard antivirus customer support billing
bullguard antivirus customer support email addres
BULLGUARD antivirus customer support live chat
BULLGUARD antivirus customer support telephone number 1.800.681.7208
BULLGUARD antivirus customer support usa phone number 1.800.681.7208
BULLGUARD antivirus help desk support phone number 1.800.681.7208 free in usa
BULLGUARD antivirus phone number 1.800.681.7208 customer support us
BULLGUARD antivirus phone number 1.800.681.7208 support
BULLGUARD antivirus support phone number 1.800.681.7208
BULLGUARD antivirus tech support phone number 1.800.681.7208 free in usa
BULLGUARD antivirus tech support phon

Reproducible: Always

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


[abakus] [Bug 367498] New: HP Bug 367265 – +++@CaNaDa@+1844-443-4666+$$ <<<<<<+@+ HP

2016-08-18 Thread jatinder via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=367498

Bug ID: 367498
   Summary: HP Bug 367265 – +++@CaNaDa@+1844-443-4666+$$ <<+@+
HP
   Product: abakus
   Version: unspecified
  Platform: Other
OS: other
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: k.h...@gmx.de
  Reporter: handain...@gmail.com

hp Printer  +++1* 844 ~443 4666  Customer Service Phone Number hp
Printer TechNICAL Support Phone Number Helpline~Number~1844 443 4666 hp Printer
Tech Support phone number hp printer Customer Service phone number Helpline
Number 1844 443 4666 hp Printer Tech Support phone number hp printer
Customer Service phone number C@ll hp printeR UsA @@ 1844 443 4666 @@ tech
support phone number hp printer customer service phone number C@ll hp printeR
UsA @@ 1844 443 4666 @@ tech support phone number hp printer customer service
phone number C@ll hp printeR UsA @@ 1844 443 4666 @@ tech support phone number
hp printer customer service phone number C@ll hp printeR UsA @@ 1844 443 4666
@@ tech support phone number hp printer customer service phone number hp
printer UsA @@ 1844 443 4666 @@ tech support phone number hp printer customer
service phone number Describe hp printer UsA @ 1844 443 4666 @ tech support
phone number hp printer customer service phone number here. hp printer UsA @
1844 443 4666 @ tech support phone number hp printer support phone number
Describe hp printer UsA @ 1844 443 4666 @ tech support phone number hp printer
support phone number here.844 443 4666@ hp printer tech support, hp printer
tech support number, hp printer tech support phone number, hp printer technical
support, hp printer technical support number, hp printer technical support
phone number, @+844 443 4666 @ hp printer Support phone number, hp printer
contact number, hp printer helpline number, hp printer telephone number,
contact number for hp printer, telephone number for hp printer, @+844 443 4666
@ hp printer customer service number, hp printer Customer service phone number,
hp printer Customer support number, hp printer Customer support phone number,
hp printer Customer care number. Disclaimer: hp printer is an independent
provider of remote tech support for third party products. Any use of third
party trademarks, brand names, product and services is only referential. hp
printer hereby disclaims any sponsorship, affiliation or endorsement of or by
any third-parties. If your product is covered by warranty, the support service
maybe available for free from manufacturer. hp printer support, hp printers
support, hp printer tech support, hp printer technical support, hp printer
support number, hp printers customer support, hp printer customer support,
contact hp printer support, hp printer support phone number, hp printer support
phone, hp technical support, hp printers tech support, hp support, hp printer
support forum, hp tech support, hp printer technical support phone number, hp
support number, hp customer support, support for hp printers, hp support
printer, hp support wireless, hp printers support phone number, hp scanner
support, contact hp support, hp customer support phone number, hp product
support hp printer Customer Service Phone Number Describe hp printer Usa @ 1844
443 4666 @ tech support phone number hp printer support phone number here.hp
printer | 1844 443 4666 | tech support phone number hp printer customer care
phone number hp printer support phone number 1-844 443 4666 (australia) Online
Best hp printer support by toll free phone number 1-844 443 4666 catinghhh
thhhei sellf outtingh the niellisbn (Australia) to fix troubleshooting issues.
We provide hp printer technical customer service to resolve problems when your
printer not printing, problem to download printer drivers, configure network
and other issues. Keyword: hp printer support, hp printer tech support phone
number 1844 443 4666(USA) hp printer support phone number USA, UK,
CANADA,AustraliaOnline Best hp printer support by toll free phone number 1-844
443 4666 (Australia) to fix troubleshooting issues. We provide hp printer
technical customer service to resolve problems when your printer not printing,
problem to download printer drivers, configure network and other issues. (For
UK 0-844-443-4666), (For USA 1844 443 4666), (For AUSTRALIA 1-844 443 4666) hp
printer service center number hp customer service number usa hp telephone
number hp printer help number hp printer customer service number usa hp service
number hp printer customer service telephone number hp help number hp helpline
number hp printer tech support telephone number hp printers service center
number hp customer care number hp support Canada phone number hp canada support
number hp phone number canada hp canada phone number hp service center contact
number hp canada contact number hp contact number Canada hp service to

[kde-gtk-config] [Bug 367499] New: usability regression: GTK+>3.16.x results in too small GTK3 app UI fonts when logical DPI>96

2016-08-18 Thread Felix Miata via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=367499

Bug ID: 367499
   Summary: usability regression: GTK+>3.16.x results in too small
GTK3 app UI fonts when logical DPI>96
   Product: kde-gtk-config
   Version: unspecified
  Platform: unspecified
OS: Linux
Status: UNCONFIRMED
  Severity: major
  Priority: NOR
 Component: general
  Assignee: manutort...@chakra-project.org
  Reporter: mrma...@earthlink.net
CC: aleix...@kde.org, co...@kde.org

Created attachment 100663
  --> https://bugs.kde.org/attachment.cgi?id=100663&action=edit
168 DPI screenshot with RV45 and RV48 Firefoxes loaded over/under in Plasma

After https://bugzilla.mozilla.org/show_bug.cgi?id=1269274 was closed WONTFIX,
I asked about this several places:
https://mail.gnome.org/archives/gtk-devel-list/2016-July/msg00028.html
https://lists.fedoraproject.org/archives/list/k...@lists.fedoraproject.org/thread/ZPIFOVGR6572ZR7L4TXMUXRYHQESBOPW/
http://trinity-devel.pearsoncomputing.net/?0::15168
None generated any response.

According to the mozilla bug,
https://git.gnome.org/browse/gtk+/commit/?id=bdf0820c501437a2150d8ff0d5340246e713f73f
caused the regression.

Upstream bug that could have fixed this was WONTFIX'd last October:
https://bugzilla.gnome.org/show_bug.cgi?id=757142

If there happens to be an XFT.dpi setting equal to the actual Xorg display
density, then UI font sizes are OK. What seems to be needed is a way for Xorg
density to be automatically converted into an Xft.dpi value for the exclusive
benefit of these GTK3-built apps.

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


[kcharselect] [Bug 142625] Support 'astral' Unicode planes (those beyond codepoint FFFF)

2016-08-18 Thread Christoph Feck via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=142625

--- Comment #19 from Christoph Feck  ---
For the KDE Applications 16.12 release in December it will be possible to
select characters from the following additional blocks with the kcharselect
application. To see them, modern fonts need to be installed.

Other applications using the KCharSelect widget (e.g. Calligra, LabPlot, Kexi,
Konversation, Krita, KXStitch) need to be updated separately.

U+1F000..U+1F0FF  Mahjong Tiles, Domino Tiles, Playing Cards
U+1F100..U+1F1FF  Enclosed Alphanumeric Supplement
U+1F200..U+1F2FF  Enclosed Ideographic Supplement
U+1F300..U+1F5FF  Miscellaneous Symbols and Pictographs
U+1F600..U+1F64F  Emoticons
U+1F650..U+1F67F  Ornamental Dingbats
U+1F680..U+1F6FF  Transport and Map Symbols
U+1F700..U+1F77F  Alchemical Symbols
U+1F780..U+1F7FF  Geometric Shapes Extended
U+1F800..U+1F8FF  Supplemental Arrows-C
U+1F900..U+1F9FF  Supplemental Symbols and Pictographs

It is possible to use other characters, e.g. U+1D000, by searching for the code
point.

Keeping this open until we have a new database format which allows to browse
remaining blocks (historical scripts, Han ideograph extensions, etc).

If you have suggestions how to improve browsing (especially Han ideographs,
which need to be extended to over 80,000), please write to the kde-utils-devel
list, or add a ticket here.

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


[print-manager] [Bug 367501] New: ++++1.8.4.4.4.4.3.4.6.6.6++++hp printer tech support number usa

2016-08-18 Thread jatinder via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=367501

Bug ID: 367501
   Summary: 1.8.4.4.4.4.3.4.6.6.6hp printer tech support
number usa
   Product: print-manager
   Version: unspecified
  Platform: Other
OS: other
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: dantt...@gmail.com
  Reporter: handain...@gmail.com

moti patli porblm toll FREEE NUMBER  CALL ANY PORBLM 1000% SOIW
+18.44*443*4666++ help hand to hand  hp printer tech support phone number usa
canada 101%@ 1-844-443-4666  hp printer tech support phone number , hp printer
customer service number, hp printer tech support number  hp printer support
number  hp printer customer support number@@Helpline, ++18.44*443*4666++  hp
printer Help Desk Phone Number USA hp printer Support Phone Number, hp printer
Help Desk Phone Number  hp printer Pro Support Phone Number, hp customer care
toll free  hp printer Tech Support Number ARKANSAS wireless wi-fi  hp printer
Tech Support Number  hp printer technical support phone number  hp printer  hp
printer tech support phone number,Phone care help  hp printer customer care
Number  hp printer tech support phone number , hp printer TeCh SuPpOrT NuMbEeR
UsA  hp printer SuPpORt PhOnE NuMbEr hp printer tech support number SupporT
printer,CustCare US  hp printer customer service phone number  hp printer tech
Support Number,  hp printer customer care Number, hp printer customer care help
desk telePhone NumberSupporti At  hp Technical support Phone Number  hp printer
Customer Support Numbers  hp printer tech support phone number,Phone care help 
hp printer customer care Number hp Tech csutomer service Phone Number hp
printer Customer Support Numbers,printer Canada  hp printer technical support
phone number Support printer  hp printer tech support phone number,Phone care
help  hp printer customer care
Number, hp printer tech support phone number usa  hp customer service phone
number wireless printer  hp printer Customer Service Number, hp printer Tech
Support Number,  hp printer Tech Support Phone Number,  hp Tech Support Phone
Number here. Wifi Help Desk@ 1-844-443-4666 hp printer Tech Support Number,  hp
printer Customer Service Number,  hp Tech Support Phone Number Describe Wifi
Issues Fix@ 1-844-443-4666  hp printer Tech Support Number,kodakTech Support
Number, hp printer Tech Support Phone Number,  hp Tech Support Phone Number
here. hp printer support @1 844-443-4666@  hp printer tech support number,  hp
printercustomer service number, hp printer Technical Support number,  hp
printer support phone number @@@rv 1834666  hp printer Support Phone
number  hp tech support number ++ +1834666+++  hp printer customer service
phone number  hp technical support number 1834666++  hp printer customer
Care phone number  hp tech support number 1834666  hp helpdesk support
phone number  hp Customer support phone number 1834666  hp tech support
number ,  hp tech support phone number ,  hp customer support phone number here
$$ $##@@  hp tech support number 1834666  hp Technical support number @@ 
hp support phone number 1834666  hp customer service phone number  hp
customer c.a.r.e number  hp helpdesk phone number  hp helpline phone number
1844+443+4666  hp contact phone number 1834666  hp tech support number , 
hp tech support phone number ,  hp customer support phone number here $$$##@@ 
hp tech support number 1834666  hp Technical support number @@  hp support
phone number 1834666  hp customer service phone number  hp customer c.a.r.e
number  hp helpdesk phone number  hp helpline phone number 1844+443+4666  hp
contact phone number  hp help number -  hp helpline number ;  hp help phone
number ,  hp helpline number ,  hp tech support tollfree number ,  hp support
Tele phone number ,  hp tech support Tele phone number ,  hp tech support
contact number ,  hp support contact number ,  hp Technical support contact
number ,  hp support phone number ,  hp printer support phone number .  hp
printer customer support phone number  hp customer service number 1834666 
hp call center  hp customer service printeraddress  hp customer c.a.r.e no  hp
printer Technical support phone number 1834666  hp printer tech support
phone number 1834666  hp printer customer service phone number 1834666
 hp Technical support phone number 1834666 symantec Technical support phone
number 1834666  hp Technical support phone number 1834666  hp customer
service tele phone number 1834666  hp printer phone number 1834666  hp
printer customer service phone number 1834666  hp printer customer service
helpdesk  hp printer phone number 1834666  hp phone number
1834666cancel subscription  hp Technical support phone number 1834666 
hp 844 phone number 1834666 snapdeal tollfree customer c.a.r.e number
1834

[plasmashell] [Bug 366462] Regression: All desktop items cannot be clicked / touched / launched

2016-08-18 Thread sterz via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=366462

sterz  changed:

   What|Removed |Added

 CC||g620...@mvrht.com

--- Comment #1 from sterz  ---
This is also occuring in the usual "desktop" view if one trys to touch on a
folder on the desktop. However, everywhere else touchscreen support works for
me on my convertible (KMenu, applications...).

Just the desktop folder widget is broken.

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


[aki] [Bug 367500] New: Hp(1.844.443.4666) printer tech support number usa

2016-08-18 Thread jatinder via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=367500

Bug ID: 367500
   Summary: Hp(1.844.443.4666) printer tech support number usa
   Product: aki
   Version: unspecified
  Platform: Other
OS: other
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: xzekeco...@gmail.com
  Reporter: handain...@gmail.com

moti patli porblm toll FREEE NUMBER  CALL ANY PORBLM 1000% SOIW
+18.44*443*4666++ help hand to hand  hp printer tech support phone number usa
canada 101%@ 1-844-443-4666  hp printer tech support phone number , hp printer
customer service number, hp printer tech support number  hp printer support
number  hp printer customer support number@@Helpline, ++18.44*443*4666++  hp
printer Help Desk Phone Number USA hp printer Support Phone Number, hp printer
Help Desk Phone Number  hp printer Pro Support Phone Number, hp customer care
toll free  hp printer Tech Support Number ARKANSAS wireless wi-fi  hp printer
Tech Support Number  hp printer technical support phone number  hp printer  hp
printer tech support phone number,Phone care help  hp printer customer care
Number  hp printer tech support phone number , hp printer TeCh SuPpOrT NuMbEeR
UsA  hp printer SuPpORt PhOnE NuMbEr hp printer tech support number SupporT
printer,CustCare US  hp printer customer service phone number  hp printer tech
Support Number,  hp printer customer care Number, hp printer customer care help
desk telePhone NumberSupporti At  hp Technical support Phone Number  hp printer
Customer Support Numbers  hp printer tech support phone number,Phone care help 
hp printer customer care Number hp Tech csutomer service Phone Number hp
printer Customer Support Numbers,printer Canada  hp printer technical support
phone number Support printer  hp printer tech support phone number,Phone care
help  hp printer customer care
Number, hp printer tech support phone number usa  hp customer service phone
number wireless printer  hp printer Customer Service Number, hp printer Tech
Support Number,  hp printer Tech Support Phone Number,  hp Tech Support Phone
Number here. Wifi Help Desk@ 1-844-443-4666 hp printer Tech Support Number,  hp
printer Customer Service Number,  hp Tech Support Phone Number Describe Wifi
Issues Fix@ 1-844-443-4666  hp printer Tech Support Number,kodakTech Support
Number, hp printer Tech Support Phone Number,  hp Tech Support Phone Number
here. hp printer support @1 844-443-4666@  hp printer tech support number,  hp
printercustomer service number, hp printer Technical Support number,  hp
printer support phone number @@@rv 1834666  hp printer Support Phone
number  hp tech support number ++ +1834666+++  hp printer customer service
phone number  hp technical support number 1834666++  hp printer customer
Care phone number  hp tech support number 1834666  hp helpdesk support
phone number  hp Customer support phone number 1834666  hp tech support
number ,  hp tech support phone number ,  hp customer support phone number here
$$ $##@@  hp tech support number 1834666  hp Technical support number @@ 
hp support phone number 1834666  hp customer service phone number  hp
customer c.a.r.e number  hp helpdesk phone number  hp helpline phone number
1844+443+4666  hp contact phone number 1834666  hp tech support number , 
hp tech support phone number ,  hp customer support phone number here $$$##@@ 
hp tech support number 1834666  hp Technical support number @@  hp support
phone number 1834666  hp customer service phone number  hp customer c.a.r.e
number  hp helpdesk phone number  hp helpline phone number 1844+443+4666  hp
contact phone number  hp help number -  hp helpline number ;  hp help phone
number ,  hp helpline number ,  hp tech support tollfree number ,  hp support
Tele phone number ,  hp tech support Tele phone number ,  hp tech support
contact number ,  hp support contact number ,  hp Technical support contact
number ,  hp support phone number ,  hp printer support phone number .  hp
printer customer support phone number  hp customer service number 1834666 
hp call center  hp customer service printeraddress  hp customer c.a.r.e no  hp
printer Technical support phone number 1834666  hp printer tech support
phone number 1834666  hp printer customer service phone number 1834666
 hp Technical support phone number 1834666 symantec Technical support phone
number 1834666  hp Technical support phone number 1834666  hp customer
service tele phone number 1834666  hp printer phone number 1834666  hp
printer customer service phone number 1834666  hp printer customer service
helpdesk  hp printer phone number 1834666  hp phone number
1834666cancel subscription  hp Technical support phone number 1834666 
hp 844 phone number 1834666 snapdeal tollfree customer c.a.r.e number
1834666 sbi tollfree customer c.a.r.e number 

[print-manager] [Bug 367502] New: 1.844.443.4666hp tech support number usa

2016-08-18 Thread jatinder via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=367502

Bug ID: 367502
   Summary: 1.844.443.4666hp tech support number usa
   Product: print-manager
   Version: unspecified
  Platform: Other
OS: other
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: dantt...@gmail.com
  Reporter: handain...@gmail.com

hp Printer  +++1* 844 ~443 4666  Customer Service Phone Number hp
Printer TechNICAL Support Phone Number Helpline~Number~1844 443 4666 hp Printer
Tech Support phone number hp printer Customer Service phone number Helpline
Number 1844 443 4666 hp Printer Tech Support phone number hp printer
Customer Service phone number C@ll hp printeR UsA @@ 1844 443 4666 @@ tech
support phone number hp printer customer service phone number C@ll hp printeR
UsA @@ 1844 443 4666 @@ tech support phone number hp printer customer service
phone number C@ll hp printeR UsA @@ 1844 443 4666 @@ tech support phone number
hp printer customer service phone number C@ll hp printeR UsA @@ 1844 443 4666
@@ tech support phone number hp printer customer service phone number hp
printer UsA @@ 1844 443 4666 @@ tech support phone number hp printer customer
service phone number Describe hp printer UsA @ 1844 443 4666 @ tech support
phone number hp printer customer service phone number here. hp printer UsA @
1844 443 4666 @ tech support phone number hp printer support phone number
Describe hp printer UsA @ 1844 443 4666 @ tech support phone number hp printer
support phone number here.844 443 4666@ hp printer tech support, hp printer
tech support number, hp printer tech support phone number, hp printer technical
support, hp printer technical support number, hp printer technical support
phone number, @+844 443 4666 @ hp printer Support phone number, hp printer
contact number, hp printer helpline number, hp printer telephone number,
contact number for hp printer, telephone number for hp printer, @+844 443 4666
@ hp printer customer service number, hp printer Customer service phone number,
hp printer Customer support number, hp printer Customer support phone number,
hp printer Customer care number. Disclaimer: hp printer is an independent
provider of remote tech support for third party products. Any use of third
party trademarks, brand names, product and services is only referential. hp
printer hereby disclaims any sponsorship, affiliation or endorsement of or by
any third-parties. If your product is covered by warranty, the support service
maybe available for free from manufacturer. hp printer support, hp printers
support, hp printer tech support, hp printer technical support, hp printer
support number, hp printers customer support, hp printer customer support,
contact hp printer support, hp printer support phone number, hp printer support
phone, hp technical support, hp printers tech support, hp support, hp printer
support forum, hp tech support, hp printer technical support phone number, hp
support number, hp customer support, support for hp printers, hp support
printer, hp support wireless, hp printers support phone number, hp scanner
support, contact hp support, hp customer support phone number, hp product
support hp printer Customer Service Phone Number Describe hp printer Usa @ 1844
443 4666 @ tech support phone number hp printer support phone number here.hp
printer | 1844 443 4666 | tech support phone number hp printer customer care
phone number hp printer support phone number 1-844 443 4666 (australia) Online
Best hp printer support by toll free phone number 1-844 443 4666 catinghhh
thhhei sellf outtingh the niellisbn (Australia) to fix troubleshooting issues.
We provide hp printer technical customer service to resolve problems when your
printer not printing, problem to download printer drivers, configure network
and other issues. Keyword: hp printer support, hp printer tech support phone
number 1844 443 4666(USA) hp printer support phone number USA, UK,
CANADA,AustraliaOnline Best hp printer support by toll free phone number 1-844
443 4666 (Australia) to fix troubleshooting issues. We provide hp printer
technical customer service to resolve problems when your printer not printing,
problem to download printer drivers, configure network and other issues. (For
UK 0-844-443-4666), (For USA 1844 443 4666), (For AUSTRALIA 1-844 443 4666) hp
printer service center number hp customer service number usa hp telephone
number hp printer help number hp printer customer service number usa hp service
number hp printer customer service telephone number hp help number hp helpline
number hp printer tech support telephone number hp printers service center
number hp customer care number hp support Canada phone number hp canada support
number hp phone number canada hp canada phone number hp service center contact
number hp canada contact number hp contact number Canada hp service toll free
number hp custome

[kwin] [Bug 361154] Running native OpenGL games - with compositing enabled - breaks X11 Plasma 5.6.0 Window Decorations

2016-08-18 Thread Martin Gräßlin via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=361154

--- Comment #88 from Martin Gräßlin  ---
That was a difficult investigation but I found it.
1. The game opens as normal window and gets a decoration with a shadow
2. It has the hint to disable compositing, which schedules for next event cylce
3. It switches to fullscreen
4. This causes the decoration to get destroyed including the shadow
5. The shadow does not get directly destroyed, but in next event cycle
6. KWin disables compositing
7. KWin destoys the shadow without compositing being active any more
8. This causes a shadow to leak in the cache
9. After resume the shadow is in the cache and things break.

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

  1   2   3   >