mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 18:44:00 +02:00
removed more cruft
This commit is contained in:
parent
d61ba02a38
commit
5fdf114ff0
2 changed files with 0 additions and 7 deletions
|
@ -149,7 +149,6 @@ Application::Application(int& argc, char** argv, timeval &startup_time) :
|
|||
_bytesPerSecond(0),
|
||||
_recentMaxPackets(0),
|
||||
_resetRecentMaxPacketsSoon(true),
|
||||
_pasteMode(false),
|
||||
_logger(new FileLogger(this))
|
||||
{
|
||||
switchToResourcesParentIfRequired();
|
||||
|
@ -926,9 +925,6 @@ void Application::keyReleaseEvent(QKeyEvent* event) {
|
|||
}
|
||||
|
||||
switch (event->key()) {
|
||||
case Qt::Key_Shift:
|
||||
_pasteMode = false;
|
||||
break;
|
||||
case Qt::Key_E:
|
||||
_myAvatar->setDriveKeys(UP, 0);
|
||||
break;
|
||||
|
@ -1437,7 +1433,6 @@ void Application::pasteVoxels(const VoxelDetail& sourceVoxel) {
|
|||
if (calculatedOctCode) {
|
||||
delete[] calculatedOctCode;
|
||||
}
|
||||
_pasteMode = false;
|
||||
}
|
||||
|
||||
void Application::nudgeVoxelsByVector(const VoxelDetail& sourceVoxel, const glm::vec3& nudgeVec) {
|
||||
|
|
|
@ -466,8 +466,6 @@ private:
|
|||
StDev _idleLoopStdev;
|
||||
float _idleLoopMeasuredJitter;
|
||||
|
||||
bool _pasteMode;
|
||||
|
||||
PieMenu _pieMenu;
|
||||
|
||||
int parseOctreeStats(const QByteArray& packet, const SharedNodePointer& sendingNode);
|
||||
|
|
Loading…
Reference in a new issue