Chris Holland
Chris Holland
Check your idents and try again. https://github.com/ElgarL/Towny/pull/134/files Mighta mixed tabs+spaces?
Better, but not quite. You just to an 8 spaces/tab indent after `if (TownyWarConfig.cancapturechunks() == true) {` ``` - selection.add(worldCoord); - TownCommand.checkIfSelectionIsValid(attackingTown, selection, false, 0, false); - new TownClaim(plugin, null,...
Note, GTK2 apps like Gimp 2.8.16 doesn't show menu items for me either. Firefox which is GTK 3 does though. I'm thinking that it's a package we're both missing. The...
Hmmm, testing the xenial version of gimp, `GTK_MODULES=unity-gtk-module gimp` seems to work without installing appmenu-gtk3-module. As the blog post says, the env var will be different for bionic though. That...
The taskmanager widget can ask to "move the selected window". https://github.com/KDE/plasma-desktop/blob/6ae9528c1ce91d72eabdb31fe5e623ad559f32cd/applets/taskmanager/package/contents/ui/ContextMenu.qml#L568 I've managed to get this sorta working with: ```qml MouseArea { onClicked: { tasksModel.requestMove(tasksModel.activeTask) } } ``` Video: https://streamable.com/vziac...
* https://github.com/KDE/kwin/blob/2e868c50df0aab40e4814724ee090ded6bd9072e/events.cpp#L1168 ```c++ if (direction == NET::Move) { // move cursor to the provided position to prevent the window jumping there on first movement // the expectation is that the...
I can reproduce the bug with the "Window Move" global shortcut, so I think this might be a KWin bug. https://bugs.kde.org/show_bug.cgi?id=392784
So according to the KWin maintainer, it seems we need to "ungrab" the mouse before calling `tasksModel.requestMove(tasksModel.activeTask)`. I recently found KDeclarative's EventGenerator class, but I can't seem to get any...
Does it work if you use `git clone https://github.com/KDE/plasma-active-window-control` mention in #148?
> I uninstalled the Phabricator version Ah, `git clone https://github.com/KDE/plasma-active-window-control` is the Phabricator version (it's just a GitHub mirror of the KDE repo). Weird, I'm using 5.14 in KDE Neon...