Cant Move Objects in The Linux Editor

So I built the Unreal 4 Editor on Ubuntu 14.04 Everything goes well just that i cant move things in the viewport using the gizmo
as the wiki says this problem was fixed by “whammy” but i still have the problem right here

- Moving objects using the left mouse button through the gizmo doesn't work; rotating and scaling does (FIXED by whammy),

im using Unreal Engine 4.5
built it with clang 3.3 and also with clang 3.5
is there any solution ?

We are still working on this one, and many other issues, but for now you can do a small hack to enable movement:

In Engine/Source/Runtime/Core/Private/Linux/LinuxApplication.cpp comment out line 266 all the way to line 277, inclusive - basically comment out everything between { and } of the if statement.

Recompile Editor and you will have an ability to move objects normally.

ok thanks :DD

just a sec why is that in the runtime directory
isnt the runtime for the engine not the Editor ? :expressionless:
how does the source code structure go ?

Core is located inside Runtime, as it’s an integral part of Editor, Game, Client, Server.