[kwin] [Bug 482142] drag in drop files in Google Chrome renders Chrome unusable

2024-05-15 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=482142

--- Comment #35 from Bastian Beischer  ---
@terranova indeed that works and I haven't noticed any regressions running this
for a while.

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

[kwin] [Bug 482142] drag in drop files in Google Chrome renders Chrome unusable

2024-05-12 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=482142

Bastian Beischer  changed:

   What|Removed |Added

 CC||bastian.beischer@rwth-aache
   ||n.de

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

[Powerdevil] [Bug 432452] Support ACPI platform profile, /sys/firmware/acpi/platform_profile_choices

2021-10-22 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=432452

--- Comment #8 from Bastian Beischer  ---
That was it, thanks. It works now. I'll forward this to the arch package
maintainer so the power profiles daemon can be included as an optional
dependency.

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

[Powerdevil] [Bug 432452] Support ACPI platform profile, /sys/firmware/acpi/platform_profile_choices

2021-10-21 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=432452

--- Comment #6 from Bastian Beischer  ---
@Meven: But I am running Linux 5.14.13 and profiles are available via:

/sys/firmware/acpi/platform_profile

Is that not what is needed? I understood that is what is required, so I was
confused when I didn't see a toggle.

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

[Powerdevil] [Bug 432452] Support ACPI platform profile, /sys/firmware/acpi/platform_profile_choices

2021-10-16 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=432452

Bastian Beischer  changed:

   What|Removed |Added

 CC||bastian.beischer@rwth-aache
   ||n.de

--- Comment #3 from Bastian Beischer  ---
Was this added in Plasma 5.23? If yes: Why don't I see a toggle in the battery
and brightness applet? I'm on a Lenovo T14 Gen 2 which uses ACPI Platform
Profiles.

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

[kdeplasma-addons] [Bug 370160] System Load Viewer with Circular Mode: Gaps between circles are too large

2020-10-18 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=370160

--- Comment #3 from Bastian Beischer  ---
Yes, the circles still have too much gap between them for my taste - but I
guess one get's used to it after a while so it's not a huge problem. This is
about "System Load Viewer", not "System Monitor". I don't see any error
messages in the journal anymore, though.

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

[Touchpad-KCM] [Bug 408325] Touchpad KCM crashes on launch

2019-06-18 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=408325

--- Comment #15 from Bastian Beischer  ---
Nate, sure.

https://phabricator.kde.org/D21884

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

[Touchpad-KCM] [Bug 408325] Touchpad KCM crashes on launch

2019-06-18 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=408325

--- Comment #12 from Bastian Beischer  ---
Proposed fix:

--- a/kcms/touchpad/src/kcm/touchpadconfigcontainer.cpp 2019-06-07
18:08:11.0 +0200
+++ b/kcms/touchpad/src/kcm/touchpadconfigcontainer.cpp 2019-06-18
14:20:11.853007246 +0200
@@ -42,7 +42,7 @@
 if (backend->getMode() == TouchpadInputBackendMode::XLibinput) {
 m_plugin = new TouchpadConfigLibinput(this, backend);
 }
-else if (backend->getMode() == TouchpadInputBackendMode::XSynaptics) {
+else {
 m_plugin = new TouchpadConfigXlib(this, backend);
 }
 } else if (KWindowSystem::isPlatformWayland()) {
diff -urN a/kcms/touchpad/src/touchpadbackend.h
b/kcms/touchpad/src/touchpadbackend.h
--- a/kcms/touchpad/src/touchpadbackend.h   2019-06-07 18:08:11.0
+0200
+++ b/kcms/touchpad/src/touchpadbackend.h   2019-06-18 14:18:57.915432036
+0200
@@ -25,9 +25,10 @@
 #include 

 enum class TouchpadInputBackendMode {
-WaylandLibinput = 0,
-XLibinput = 1,
-XSynaptics = 2
+Unset = 0,
+WaylandLibinput = 1,
+XLibinput = 2,
+XSynaptics = 3
 };

 class Q_DECL_EXPORT TouchpadBackend : public QObject
@@ -35,7 +36,7 @@
 Q_OBJECT

 protected:
-explicit TouchpadBackend(QObject *parent) : QObject(parent) {}
+explicit TouchpadBackend(QObject *parent) : QObject(parent),
m_mode(TouchpadInputBackendMode::Unset) {}
 void setMode(TouchpadInputBackendMode mode);

 public:


which will create the Synaptics backend as m_plugin in case of no touchpad (as
in Plasma 5.15), which will show a message 'No touchpad found' and disable all
controls.

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

[Touchpad-KCM] [Bug 408325] Touchpad KCM crashes on launch

2019-06-18 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=408325

--- Comment #11 from Bastian Beischer  ---
I believe this bug is triggered for X11 on systems which do not actually have a
touchpad. I think the problem is:

Since

https://github.com/KDE/plasma-desktop/commit/ce84d6ab4babc80707f4e4c1deb02cfe3ac5b7bb

TouchpadConfigContainer::m_plugin is null, because
TouchpadBackend::implementation() does not have m_mode properly set. setMode()
is supposed to be called in XlibBackend::findTouchpad(), but this goes through
the list of touchpads, which can be none, and calls setMode() on each such
touchpad.

So setMode() is never actually called and m_mode is (implicitly!) initialized
to WaylandLibinput (since it does not get set in TouchpadBackend constructor).
Then getMode() does not return any of the expected cases in isPlatformX11()
branch, which means m_plugin stays a nullptr and then there is a crash in
TouchpadConfigContainer::sizeHint().

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

[Touchpad-KCM] [Bug 408325] Touchpad KCM crashes on launch

2019-06-18 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=408325

--- Comment #10 from Bastian Beischer  ---
*** Bug 408839 has been marked as a duplicate of this bug. ***

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

[systemsettings] [Bug 408839] bei System Einste3llungen Maus aufrufen stürzt Systemeinstelungen ab

2019-06-18 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=408839

Bastian Beischer  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 CC||bastian.beischer@rwth-aache
   ||n.de
 Status|REPORTED|RESOLVED

--- Comment #1 from Bastian Beischer  ---


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

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

[Touchpad-KCM] [Bug 408325] Touchpad KCM crashes on launch

2019-06-12 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=408325

Bastian Beischer  changed:

   What|Removed |Added

 CC||bastian.beischer@rwth-aache
   ||n.de

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

[plasmashell] [Bug 347770] notification number not alligned

2019-06-12 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=347770

Bastian Beischer  changed:

   What|Removed |Added

 CC||bastian.beischer@rwth-aache
   ||n.de

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

[dolphin] [Bug 404199] "Recent Files" and "Search For" sections missing in places panel

2019-02-13 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=404199

Bastian Beischer  changed:

   What|Removed |Added

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

--- Comment #6 from Bastian Beischer  ---
Yes, that has fixed it! Thanks!

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

[dolphin] [Bug 404199] "Recent Files" and "Search For" sections missing in places panel

2019-02-13 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=404199

Bastian Beischer  changed:

   What|Removed |Added

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

--- Comment #4 from Bastian Beischer  ---
(In reply to Patrick Silva from comment #3)
> bug 404154 seems related/duplicate

Patrick, I don't believe that's correct. My problem is simply that the sections
in the Places panel are completely missing, it's not that the search itself
doesn't work. If I enter "timeline:/" in the location bar it will work just
fine. There's just no way to get to that location from the places panel... Same
for recent files.

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

[dolphin] [Bug 404199] "Recent Files" and "Search For" sections missing in places panel

2019-02-11 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=404199

--- Comment #2 from Bastian Beischer  ---
No it doesn't. (I had to first hide a section in order to be able to click on
show hidden sections, since I had none in the beginning.)

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

[dolphin] [Bug 404199] New: "Recent Files" and "Search For" sections missing in places panel

2019-02-11 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=404199

Bug ID: 404199
   Summary: "Recent Files" and "Search For" sections missing in
places panel
   Product: dolphin
   Version: unspecified
  Platform: Archlinux Packages
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: panels: places
  Assignee: dolphin-bugs-n...@kde.org
  Reporter: bastian.beisc...@rwth-aachen.de
  Target Milestone: ---

I'm on Arch Linux x86_64, Plasma 5.14.5, KDE Applications 18.12.2, Frameworks
5.55.0, Qt 5.12.1.

In my places panel in dolphin there are no sections for 'Search For' or 'Recent
Files'. Baloo is working properly, entering 'timeline:/' in the location bar in
dolphin works as it should. Pressing ctrl+f to open the search panel also
works.

When I create secondary (new) user the sections do appear in the dolphin places
panel. So I suspect something in my configuration files in ~/.config has made
them disappear? But I can't find out how to get them back.

This bug has been around for a long time for me - not sure when I last saw
these sections in the places panel, it might be years ago, so I can't blame any
specific version.

Any ideas how to get them back?

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

[kio-extras] [Bug 390551] Internal Error when trying to access Samba domain by URL with SMB2

2018-10-16 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=390551

Bastian Beischer  changed:

   What|Removed |Added

 CC||bastian.beischer@rwth-aache
   ||n.de

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

[Powerdevil] [Bug 399646] New: Brightness control adjusts the wrong backlight control (multiple GPUs)

2018-10-11 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=399646

Bug ID: 399646
   Summary: Brightness control adjusts the wrong backlight control
(multiple GPUs)
   Product: Powerdevil
   Version: 5.14.0
  Platform: Other
OS: Linux
Status: REPORTED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: plasma-b...@kde.org
  Reporter: bastian.beisc...@rwth-aachen.de
  Target Milestone: ---

When using my laptops (Lenovo W520) FN-keys to adjust the display brightness
the OSD shows up and the sliders change, but the display brightness does not.

This laptop has two physical GPUs (Intel + NVIDIA), depending on the BIOS
settings you can use either Intel, NVIDIA by themselves or both. I have a PRIME
setup where I'm using both GPUs, the Intel GPU is the main one and the other
one is normally asleep, unless I plug in an external monitor.

I have to providers for backlight in /sys/class:

/sys/class/backlight/intel_backlight
/sys/class/backlight/nv_backlight

Both have "type" = "raw".

Even when I don't have a secondary monitor connected (and the NVIDIA GPU isn't
used at all) I can see that the nv_backlight/brightness value changes when
using the brightness control, but that's the wrong one!

Now I have had a quick glance at the code of the brightness controls, which
appears to either use a whitelist of backlight providers, or goes through all
the providers and picks the first one (since they both have type raw).

Because there surely are users who have NVIDIA as a primary GPU and Intel as a
secondary one, it is possible that a hardcoded list of preferences will never
satisfy all parties. Maybe a setting in ~/.config could be used to specify the
correct device?

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

[krdc] [Bug 394551] Connection Fails with no error message if share media '/media' doesn't exist

2018-08-07 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=394551

Bastian Beischer  changed:

   What|Removed |Added

 CC||bastian.beischer@rwth-aache
   ||n.de

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

[plasmashell] [Bug 389771] Activity bar gets stuck sometimes after I press the shortcut

2018-07-13 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=389771

Bastian Beischer  changed:

   What|Removed |Added

 CC||bastian.beischer@rwth-aache
   ||n.de

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

[print-manager] [Bug 395115] print-manager v18.04.1 interacts badly with recent cups v2.2.8, numerous errors leading to high system load

2018-06-08 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=395115

--- Comment #8 from Bastian Beischer  ---
@loqs: Thanks, but unfortunately that doesn't fix it for me.

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

[print-manager] [Bug 395115] print-manager v18.04.1 interacts badly with recent cups v2.2.8, numerous errors leading to high system load

2018-06-08 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=395115

--- Comment #5 from Bastian Beischer  ---
I bisected cups from v2.2.7 to v2.2.8. This is the bisect log:

git bisect start
# bad: [4ebeb20c50145190312c9897efa26ed5b58b3bc5] Update README and INSTALL
git bisect bad 4ebeb20c50145190312c9897efa26ed5b58b3bc5
# good: [84c97c051db7de61342461b6333a6bf31830535e] Update VisualStudio Project
git bisect good 84c97c051db7de61342461b6333a6bf31830535e
# good: [9135aedbb4d91d2e20e7b767c2368eadf6d5a5d4] Update ErrorPolicy in
cupsd.conf man page (Issue #5301)
git bisect good 9135aedbb4d91d2e20e7b767c2368eadf6d5a5d4
# bad: [22716a21f7fd8201dd4c5b015defed780c596331] Mirror change from master.
git bisect bad 22716a21f7fd8201dd4c5b015defed780c596331
# good: [66021bfa9043961f0ace0b6a5a82d181d606e755] Mirror mailto changes from
master (Issue #5312)
git bisect good 66021bfa9043961f0ace0b6a5a82d181d606e755
# bad: [d66aa76457ccfffb6420cd88bc72f84a5d8d7e37] Mirror documentation updates
from master.
git bisect bad d66aa76457ccfffb6420cd88bc72f84a5d8d7e37
# bad: [4c37eb9f77910f6f856fc540fc9a94a5885af17c] Generalize the input
validation of some kinds of attributes.
git bisect bad 4c37eb9f77910f6f856fc540fc9a94a5885af17c
# first bad commit: [4c37eb9f77910f6f856fc540fc9a94a5885af17c] Generalize the
input validation of some kinds of attributes.

Which identifies this commit as the first bad one:

https://github.com/apple/cups/commit/4c37eb9f77910f6f856fc540fc9a94a5885af17c

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

[print-manager] [Bug 395115] print-manager v18.04.1 interacts badly with recent cups v2.2.8, numerous errors leading to high system load

2018-06-07 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=395115

Bastian Beischer  changed:

   What|Removed |Added

 CC||bastian.beischer@rwth-aache
   ||n.de

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

[plasmashell] [Bug 377733] Vertical spacing

2018-02-07 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=377733

Bastian Beischer  changed:

   What|Removed |Added

 CC||bastian.beischer@rwth-aache
   ||n.de

--- Comment #4 from Bastian Beischer  ---
After upgrading to Plasma 5.12 I have a similar problem. In my case the text is
slightly too high, but not for all panel heights. This issue did not exist
before Plasma 5.12 for me, so I'm not sure it's the same bug.

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

[Plasma Vault] [Bug 385444] Add Ability to Delete a Vault via GUI

2018-02-04 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=385444

Bastian Beischer  changed:

   What|Removed |Added

 CC||bastian.beischer@rwth-aache
   ||n.de

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

[Heaptrack] [Bug 383889] Heaptrack does not build with glibc 2.26

2017-08-31 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=383889

Bastian Beischer  changed:

   What|Removed |Added

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

--- Comment #3 from Bastian Beischer  ---
Fixed with commit f0a682550118b7019e74af71d9e8624902b8a984.

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

[Heaptrack] [Bug 383889] Heaptrack does not build with glibc 2.26

2017-08-23 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=383889

Bastian Beischer  changed:

   What|Removed |Added

 CC||bastian.beischer@rwth-aache
   ||n.de

--- Comment #1 from Bastian Beischer  ---
Created attachment 107469
  --> https://bugs.kde.org/attachment.cgi?id=107469&action=edit
patch for glibc 2.26

Proposed patch to fix the problem.

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

[Heaptrack] [Bug 383889] New: Heaptrack does not build with glibc 2.26

2017-08-23 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=383889

Bug ID: 383889
   Summary: Heaptrack does not build with glibc 2.26
   Product: Heaptrack
   Version: unspecified
  Platform: Other
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: general
  Assignee: m...@milianw.de
  Reporter: bastian.beisc...@rwth-aachen.de
  Target Milestone: ---

In glibc 2.26 the 'cfree' function was turned into a deprecated function:

https://sourceware.org/git/?p=glibc.git;a=commitdiff;h=025b33ae84bb8f15b2748a1d8605dca453fce112;hp=6c6ab1fc49d524ab1892cb20ee74352ace0b8034

Leading to this error:

/home/beischer/abs/aur/heaptrack-git/src/heaptrack/src/track/heaptrack_inject.cpp:122:41:
error: ‘::cfree’ has not been declared
 static constexpr auto original = &::cfree;
 ^
/home/beischer/abs/aur/heaptrack-git/src/heaptrack/src/track/heaptrack_inject.cpp:122:41:
note: suggested alternative:
/home/beischer/abs/aur/heaptrack-git/src/heaptrack/src/track/heaptrack_inject.cpp:119:8:
note:   ‘{anonymous}::hooks::cfree’
 struct cfree
^
make[2]: *** [src/track/CMakeFiles/heaptrack_inject.dir/build.make:63:
src/track/CMakeFiles/heaptrack_inject.dir/heaptrack_inject.cpp.o] Error 1

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

[konsole] [Bug 380879] [Qt 5.9] Konsole tabbar does not have empty space at the right side anymore

2017-08-02 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=380879

--- Comment #14 from Bastian Beischer  ---
Personally I've grown very accustomed to double-clicking the empty space and
I'd prefer to keep that option. I'm not overly fond of the looks of the
non-expanding tabs, either.

But both of these things might be a matter of getting used to after all...

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

[konsole] [Bug 380879] [Qt 5.9] Konsole tabbar does not have empty space at the right side anymore

2017-07-04 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=380879

--- Comment #9 from Bastian Beischer  ---
What about adding an empty expanding tab manually at the end of the normal
tabs? That should work, shouldn't it?

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

[konsole] [Bug 380879] [Qt 5.9] Konsole tabbar does not have empty space at the right side anymore

2017-07-04 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=380879

--- Comment #5 from Bastian Beischer  ---
It appears that Oleg Yadrov from Qt is certain that this is a Konsole bug. The
originally reported bug (https://bugreports.qt.io/browse/QTBUG-61362) was
closed as 'Invalid' and the offspring bug
(https://bugreports.qt.io/browse/QTBUG-61480) was fixed in a way that still
leaves the Konsole tabbar broken.

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

[kwin] [Bug 360841] Unable to unshow/unpresent windows using the same keyboard shortcut

2017-06-17 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=360841

--- Comment #47 from Bastian Beischer  ---
P.S. The original bug report existed before Qt 5.9.0, so I disagree with 380902
being a duplicate of this report, although the symptoms are the same.

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

[kwin] [Bug 360841] Unable to unshow/unpresent windows using the same keyboard shortcut

2017-06-17 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=360841

--- Comment #46 from Bastian Beischer  ---
I have tested this patch:

diff --git a/scripting/workspace_wrapper.cpp b/scripting/workspace_wrapper.cpp
index 461e0546c..269a72743 100644
--- a/scripting/workspace_wrapper.cpp
+++ b/scripting/workspace_wrapper.cpp
@@ -64,6 +64,7 @@ WorkspaceWrapper::WorkspaceWrapper(QObject* parent) :
QObject(parent)
 emit numberScreensChanged(currentCount);
 }
 );
+QApplication::desktop()->winId();
 connect(QApplication::desktop(), SIGNAL(resized(int)),
SIGNAL(screenResized(int)));
 foreach (KWin::Client *client, ws->clientList()) {
 setupClientConnections(client);

and it fixes the issue indeed!

Good work!

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

[konsole] [Bug 380879] [Qt 5.9] Konsole tabbar does not have empty space at the right side anymore

2017-06-15 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=380879

--- Comment #4 from Bastian Beischer  ---
Oleg Yadrov from Qt says that the fault is in Konsole
(https://bugreports.qt.io/browse/QTBUG-61362). Could a qualified person please
check and reply to him?

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

[kwin] [Bug 381021] Hotkeys have no effect in the Kwin window management modes

2017-06-11 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=381021

Bastian Beischer  changed:

   What|Removed |Added

 CC||bastian.beischer@rwth-aache
   ||n.de

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

[konsole] [Bug 380879] [Qt 5.9] Konsole tabbar does not have empty space at the right side anymore

2017-06-09 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=380879

Bastian Beischer  changed:

   What|Removed |Added

Version|17.04.0 |17.04.2

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

[kwin] [Bug 380902] kwin effects like "present windows" can't be exited with the keyboard

2017-06-09 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=380902

Bastian Beischer  changed:

   What|Removed |Added

Version|5.10.0  |5.10.1

--- Comment #1 from Bastian Beischer  ---
Possible duplicate: 381021

Also related? 360841, but this bug here is definitely new with Plasma 5.10.0
and 360841 is an older bug.

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

[kwin] [Bug 380902] New: kwin effects like "present windows" can't be exited with the keyboard

2017-06-06 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=380902

Bug ID: 380902
   Summary: kwin effects like "present windows" can't be exited
with the keyboard
   Product: kwin
   Version: 5.10.0
  Platform: Other
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: effects-present-windows
  Assignee: kwin-bugs-n...@kde.org
  Reporter: bastian.beisc...@rwth-aachen.de
  Target Milestone: ---

Some effects in kwin like "present windows", but also "show desktop grid" and
others cannot be left anymore with the keyboard. I have present windows bound
to Ctrl+F9 and when I press this shortcut the effect triggers correctly.
However, with older versions of Plasma I was able to stop the effect with
another press of Ctrl+F9 (or by pressing ESC).

This does not work anymore. I think this is a regression in Plasma 5.10, since
I did not notice the same problem in Plasma 5.9.5. However, Qt was also
recently updated to 5.9 in Arch Linux, so it may also be a problem in Qt.

Components:

Platform: Arch Linux x86_64
Plasma 5.10.0
KDE Frameworks 5.34.0
KDE Applications 17.04.1
Qt 5.9.0

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

[konsole] [Bug 380879] New: [Qt 5.9] Konsole tabbar does not have empty space at the right side anymore

2017-06-06 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=380879

Bug ID: 380879
   Summary: [Qt 5.9] Konsole tabbar does not have empty space at
the right side anymore
   Product: konsole
   Version: 17.04.0
  Platform: Archlinux Packages
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: tabbar
  Assignee: konsole-de...@kde.org
  Reporter: bastian.beisc...@rwth-aachen.de
  Target Milestone: ---

Arch Linux updated Qt to 5.9.0 and since then konsole tabbar does not have any
"empty space" at the right side of the tabbar anymore. I'm talking about the
space which you can double click to open a new tab.

For example, with a single tab, the tab used to span from the left to about
half of the bar and the right half was empty. With Qt 5.9.0 this is no longer
the case: The tab spans the entire bar.

Might be a Qt 5.9.0 bug, but maybe not...

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

[kwin] [Bug 375993] The 'Show Desktop' action doesn't restore focus

2017-03-19 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=375993

--- Comment #3 from Bastian Beischer  ---
I can also confirm this. Also bug 374954 is a duplicate, I think.

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

[kwin] [Bug 374954] After using »Show desktop« effect, no window is focused

2017-03-19 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=374954

Bastian Beischer  changed:

   What|Removed |Added

 CC||bastian.beischer@rwth-aache
   ||n.de

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

[kwin] [Bug 375993] The 'Show Desktop' action doesn't restore focus

2017-03-19 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=375993

Bastian Beischer  changed:

   What|Removed |Added

 CC||bastian.beischer@rwth-aache
   ||n.de

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

[Heaptrack] [Bug 376741] Long debuggee strings break summary page

2017-02-21 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=376741

--- Comment #2 from Bastian Beischer  ---
Thanks, the fix you pushed works well for me.

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

[Heaptrack] [Bug 376741] New: Long debuggee strings break summary page

2017-02-20 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=376741

Bug ID: 376741
   Summary: Long debuggee strings break summary page
   Product: Heaptrack
   Version: unspecified
  Platform: Compiled Sources
OS: Linux
Status: UNCONFIRMED
  Severity: minor
  Priority: NOR
 Component: general
  Assignee: m...@milianw.de
  Reporter: bastian.beisc...@rwth-aachen.de
  Target Milestone: ---

In case the debuggee command line was very long the GUI expands in width to
meet the space requirements of the long debuggee string. It can't be shrinked
either.

This wouldn't be too bad, but it get's problematic when the string is really
long, then parts of the GUI don't fit on the screen and this can't be solved.

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

[plasmashell] [Bug 375966] Digital Clock font is too large

2017-02-04 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=375966

Bastian Beischer  changed:

   What|Removed |Added

 CC||bastian.beischer@rwth-aache
   ||n.de

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

[plasmashell] [Bug 375969] add option to adjust size of digital clock manually / font is tiny when combined with date

2017-02-04 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=375969

Bastian Beischer  changed:

   What|Removed |Added

 CC||bastian.beischer@rwth-aache
   ||n.de

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

[systemsettings] [Bug 375817] SDDM KCM in Plasma 5.9: Can not set custom background image

2017-01-31 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=375817

Bastian Beischer  changed:

   What|Removed |Added

 CC||bastian.beischer@rwth-aache
   ||n.de

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

[systemsettings] [Bug 375817] New: SDDM KCM in Plasma 5.9: Can not set custom background image

2017-01-31 Thread Bastian Beischer
https://bugs.kde.org/show_bug.cgi?id=375817

Bug ID: 375817
   Summary: SDDM KCM in Plasma 5.9: Can not set custom background
image
   Product: systemsettings
   Version: 5.9.0
  Platform: Archlinux Packages
OS: Linux
Status: UNCONFIRMED
  Severity: minor
  Priority: NOR
 Component: kcm_sddm
  Assignee: k...@davidedmundson.co.uk
  Reporter: bastian.beisc...@rwth-aachen.de
  Target Milestone: ---

In Plasma 5.9 the theme.conf of the breeze SDDM theme contains these settings:

[General]
type=color
color=#1d99f3
background=

When customizing the background image with SDDM KCM there is a new file
"theme.conf.user" in the SDDM theme directory:

[General]
background=foo.png

However, when restarting SDDM the custom background picture is not shown.

I think the theme.conf.user file has to look like this:

[General]
type=image
background=foo.png

Then it works normally.

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

[plasmashell] [Bug 370030] Digital Clock is too wide on smaller panels

2016-10-06 Thread Bastian Beischer via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=370030

--- Comment #1 from Bastian Beischer  ---
Possibly related from my journalctl:

plasmashell[6708]:
file:///usr/share/plasma/plasmoids/org.kde.plasma.digitalclock/contents/ui/DigitalClock.qml:443:5:
QML Text: Cannot anchor to a null item

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


[kdeplasma-addons] [Bug 370160] System Load Viewer with Circular Mode: Gaps between circles are too large

2016-10-06 Thread Bastian Beischer via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=370160

--- Comment #1 from Bastian Beischer  ---
Possibly related error messages from my journalctl:

plasmashell[6708]:
file:///usr/share/plasma/plasmoids/org.kde.plasma.systemloadviewer/contents/ui/SystemLoadViewer.qml:79:
TypeError: Cannot read property of null
plasmashell[6708]:
file:///usr/share/plasma/plasmoids/org.kde.plasma.systemloadviewer/contents/ui/SystemLoadViewer.qml:79:
TypeError: Cannot read property of null
plasmashell[6708]:
file:///usr/share/plasma/plasmoids/org.kde.plasma.systemloadviewer/contents/ui/SystemLoadViewer.qml:253:
TypeError: Cannot read property 'value' of undefined

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


[kdeplasma-addons] [Bug 370160] New: System Load Viewer with Circular Mode: Gaps between circles are too large

2016-10-05 Thread Bastian Beischer via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=370160

Bug ID: 370160
   Summary: System Load Viewer with Circular Mode: Gaps between
circles are too large
   Product: kdeplasma-addons
   Version: 5.8.0
  Platform: Archlinux Packages
OS: Linux
Status: UNCONFIRMED
  Severity: minor
  Priority: NOR
 Component: systemloadviewer
  Assignee: plasma-b...@kde.org
  Reporter: bastian.beisc...@rwth-aachen.de

I'm using Plasma 5.8.0 LTS and I have the "System Load Viewer" applet in my
panel. I've set it to "Circular" display and there's a very visible gap between
the circles, almost as large as the circles themselves.

It's possible that this only happens with reasonable small panel vertical
sizes. I've mine set to be smaller than the default.

This particular problem did not exist in one of the recent other Plasma
releases, although I can't say exactly which version was OK.

Reproducible: Always

Steps to Reproduce:
1. Make sure you're running Plasma 5.8.0 LTS
2. Add the System Load Viewer applet to the panel
3. Set the applet to "Circular" display mode.
4. Playing around with the vertical size of the panel helps to illustrate the
problem.

Actual Results:  
The gap between the circles is too large.

Expected Results:  
There should be only a small gap between the circles.

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


[kdeplasma-addons] [Bug 370160] System Load Viewer with Circular Mode: Gaps between circles are too large

2016-10-05 Thread Bastian Beischer via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=370160

Bastian Beischer  changed:

   What|Removed |Added

 CC||bastian.beischer@rwth-aache
   ||n.de

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


[plasmashell] [Bug 362239] Focus does not return to earlier focussed window while returning from 'Show Desktop'

2016-10-05 Thread Bastian Beischer via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=362239

--- Comment #1 from Bastian Beischer  ---
This bug still exists in Plasma 5.8.0 LTS. It would be nice to see this fixed.

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


[plasmashell] [Bug 362239] Focus does not return to earlier focussed window while returning from 'Show Desktop'

2016-10-05 Thread Bastian Beischer via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=362239

Bastian Beischer  changed:

   What|Removed |Added

 CC||bastian.beischer@rwth-aache
   ||n.de

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


[plasmashell] [Bug 370030] New: Digital Clock is too wide on smaller panels

2016-10-05 Thread Bastian Beischer via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=370030

Bug ID: 370030
   Summary: Digital Clock is too wide on smaller panels
   Product: plasmashell
   Version: 5.8.0
  Platform: Archlinux Packages
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: Digital Clock
  Assignee: plasma-b...@kde.org
  Reporter: bastian.beisc...@rwth-aachen.de

I just updated to Plasma 5.8.0 LTS and since the update the Digital Clock in my
Panel takes up too much space (it is too wide, i.e. there's lots of extra white
space to the left and to the right of the actual time string in the panel).

Other people on Arch have found the same problem and have uploaded a
screenshots here:

http://imgur.com/CQeifwj

Mine is even wider.



Reproducible: Always

Steps to Reproduce:
1. Install Plasma 5.8.0 LTS
2. Add a Digital Clock Applet to your panel
3. Reduce the vertical size of the panel.

Actual Results:  
Width of the Digital Clock Applet should scale accordingly.

Expected Results:  
Digital Clock Applet is too wide.

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


[plasmashell] [Bug 370030] Digital Clock is too wide on smaller panels

2016-10-05 Thread Bastian Beischer via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=370030

Bastian Beischer  changed:

   What|Removed |Added

 CC||bastian.beischer@rwth-aache
   ||n.de

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


[Breeze] [Bug 368834] New: KF 5.26.0: Launcher icons for Konsole and Dolphin look blurry for certain panel heights

2016-09-15 Thread Bastian Beischer via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=368834

Bug ID: 368834
   Summary: KF 5.26.0: Launcher icons for Konsole and Dolphin look
blurry for certain panel heights
   Product: Breeze
   Version: 5.7.5
  Platform: Archlinux Packages
OS: Linux
Status: UNCONFIRMED
  Severity: normal
  Priority: NOR
 Component: Icons
  Assignee: visual-des...@kde.org
  Reporter: bastian.beisc...@rwth-aachen.de
CC: kain...@gmail.com

After Arch Linux updated breeze-icons to the version from KF 5.26.0 my launcher
icons in the panel for Konsole and Dolphin look blurry. This can be "fixed" by
making the panel smaller or larger, but in both directions the panel is either
too small or too large for my taste.

This problem did not exist with KF 5.25.0, in fact downgrading only
breeze-icons to KF 5.25.0 fixes the problem.

Arch Linux has Plasma 5.7.5, KF 5.26 and KDE Applications 16.08.1 if that
matters.

Reproducible: Always

Steps to Reproduce:
1. Upgrade to KF 5.26.0.
2. Add Dolphin to the panel by right-clicking on the application in the
launcher menu and selecting "Add to panel".
3. Play around with the panel height.

Actual Results:  
Icon looks blurry

Expected Results:  
Icon should be sharp.

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


[plasmashell] [Bug 352345] Quick activity switch makes it use wrong wallpaper

2016-09-03 Thread Bastian Beischer via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=352345

Bastian Beischer  changed:

   What|Removed |Added

 CC||bastian.beischer@rwth-aache
   ||n.de

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


[plasmashell] [Bug 360034] Activity switcher not showing wallpapers from all activities

2016-09-03 Thread Bastian Beischer via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=360034

Bastian Beischer  changed:

   What|Removed |Added

 CC||bastian.beischer@rwth-aache
   ||n.de

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


[kwin] [Bug 360443] Kwin freezes -- mouse moves but nothing else works

2016-07-14 Thread Bastian Beischer via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=360443

Bastian Beischer  changed:

   What|Removed |Added

 CC||bastian.beischer@rwth-aache
   ||n.de

--- Comment #13 from Bastian Beischer  ---
I'm suffering from random freezes in kwin which match the subject of this bug
report as well.

I have an Intel GPU and I'm using driver version 26f8ab5 (SHA1 from Intel
Driver git repository). My laptop is a Lenovo W520. I'm using "OpenGL 2.0" and
"GLX" in compositor settings.

I'm using Qt 5.7 and KDE Plasma 5.7.1. I was able to attach with gdb to
kwin_x11 last time the desktop froze (mouse is still moving but nothing is
"clickable"):

(gdb) bt
#0  0x7f1756d8c6cd in poll () from target:/usr/lib/libc.so.6
#1  0x7f1755eee8e0 in ?? () from target:/usr/lib/libxcb.so.1
#2  0x7f1755ef039f in ?? () from target:/usr/lib/libxcb.so.1
#3  0x7f1755ef04b2 in xcb_wait_for_reply () from
target:/usr/lib/libxcb.so.1
#4  0x7f175217e727 in _XReply () from target:/usr/lib/libX11.so.6
#5  0x7f174c82ea5a in ?? () from target:/usr/lib/libGL.so.1
#6  0x7f174c82edb7 in ?? () from target:/usr/lib/libGL.so.1
#7  0x7f172d15844a in ?? () from
target:/usr/lib/xorg/modules/dri/i965_dri.so
#8  0x7f172d158981 in ?? () from
target:/usr/lib/xorg/modules/dri/i965_dri.so
#9  0x7f172d15994a in ?? () from
target:/usr/lib/xorg/modules/dri/i965_dri.so
#10 0x7f172cf38933 in ?? () from
target:/usr/lib/xorg/modules/dri/i965_dri.so
#11 0x7f174f6da731 in KWin::GLVertexBuffer::draw(QRegion const&, unsigned
int, int, int, bool) () from target:/usr/lib/libkwinglutils.so.8
#12 0x7f174f6dab97 in KWin::GLVertexBuffer::render(QRegion const&, unsigned
int, bool) () from target:/usr/lib/libkwinglutils.so.8
#13 0x7f174f6dac3a in KWin::GLVertexBuffer::render(unsigned int) () from
target:/usr/lib/libkwinglutils.so.8
#14 0x7f1756948ff1 in ?? () from target:/usr/lib/libkwin.so.5
#15 0x7f175694ecd5 in KWin::SceneOpenGL::paintBackground(QRegion) () from
target:/usr/lib/libkwin.so.5
#16 0x7f1756935c98 in ?? () from target:/usr/lib/libkwin.so.5
#17 0x7f1756948f43 in ?? () from target:/usr/lib/libkwin.so.5
#18 0x7f17569372a4 in ?? () from target:/usr/lib/libkwin.so.5
#19 0x7f175696132f in KWin::EffectsHandlerImpl::paintScreen(int, QRegion,
KWin::ScreenPaintData&) () from target:/usr/lib/libkwin.so.5
#20 0x7f1753bd82ef in KWin::Effect::paintScreen(int, QRegion,
KWin::ScreenPaintData&) () from target:/usr/lib/libkwineffects.so.8
#21 0x7f17569612da in KWin::EffectsHandlerImpl::paintScreen(int, QRegion,
KWin::ScreenPaintData&) () from target:/usr/lib/libkwin.so.5
#22 0x7f1753bd82ef in KWin::Effect::paintScreen(int, QRegion,
KWin::ScreenPaintData&) () from target:/usr/lib/libkwineffects.so.8
#23 0x7f17569612da in KWin::EffectsHandlerImpl::paintScreen(int, QRegion,
KWin::ScreenPaintData&) () from target:/usr/lib/libkwin.so.5
#24 0x7f1756936f46 in ?? () from target:/usr/lib/libkwin.so.5
#25 0x7f175694f988 in KWin::SceneOpenGL::paint(QRegion,
QList) () from target:/usr/lib/libkwin.so.5
#26 0x7f1756926ffb in KWin::Compositor::performCompositing() () from
target:/usr/lib/libkwin.so.5
#27 0x7f1754439303 in QObject::event(QEvent*) () from
target:/usr/lib/libQt5Core.so.5
#28 0x7f17550ece3c in QApplicationPrivate::notify_helper(QObject*, QEvent*)
() from target:/usr/lib/libQt5Widgets.so.5
#29 0x7f17550f45b1 in QApplication::notify(QObject*, QEvent*) () from
target:/usr/lib/libQt5Widgets.so.5
#30 0x7f175440cc80 in QCoreApplication::notifyInternal2(QObject*, QEvent*)
() from target:/usr/lib/libQt5Core.so.5
#31 0x7f175446051e in QTimerInfoList::activateTimers() () from
target:/usr/lib/libQt5Core.so.5
#32 0x7f175445e4a8 in
QEventDispatcherUNIX::processEvents(QFlags) ()
from target:/usr/lib/libQt5Core.so.5
#33 0x7f173d5510fd in ?? () from target:/usr/lib/libQt5XcbQpa.so.5
#34 0x7f175440b0da in
QEventLoop::exec(QFlags) () from
target:/usr/lib/libQt5Core.so.5
#35 0x7f17544135cc in QCoreApplication::exec() () from
target:/usr/lib/libQt5Core.so.5
#36 0x7f17572754b5 in kdemain () from
target:/usr/lib/libkdeinit5_kwin_x11.so
#37 0x7f1756cce741 in __libc_start_main () from target:/usr/lib/libc.so.6
#38 0x00400769 in _start ()

Killing kwin_x11 (with -9) and restarting it fixes the desktop.

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


[plasmashell] [Bug 365570] Systray icons are big and pixelated after update to 5.7.1

2016-07-12 Thread Bastian Beischer via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=365570

Bastian Beischer  changed:

   What|Removed |Added

 CC||bastian.beischer@rwth-aache
   ||n.de

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


[plasmashell] [Bug 364431] Tiny icons in 5.7 system tray

2016-07-12 Thread Bastian Beischer via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=364431

Bastian Beischer  changed:

   What|Removed |Added

 CC||bastian.beischer@rwth-aache
   ||n.de

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


[telepathy] [Bug 360100] text-ui doesn't work with Qt 5.6

2016-03-19 Thread Bastian Beischer via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=360100

Bastian Beischer  changed:

   What|Removed |Added

 CC||bastian.beischer@rwth-aache
   ||n.de

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


[plasmashell] [Bug 356225] Panel moves to wrong screen when external monitor is connected

2016-03-18 Thread Bastian Beischer via KDE Bugzilla
https://bugs.kde.org/show_bug.cgi?id=356225

Bastian Beischer  changed:

   What|Removed |Added

 CC||bastian.beischer@rwth-aache
   ||n.de

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