diff options
-rw-r--r-- | INSTALL | 4 | ||||
-rw-r--r-- | src/sidebar.cc | 6 |
2 files changed, 8 insertions, 2 deletions
@@ -13,6 +13,10 @@ Project::OSiRiON world editor - INSTALL ./configure make + On Ubuntu, use + + ./configure --with-qt-includes=/usr/include/qt4 + make Run src/editor diff --git a/src/sidebar.cc b/src/sidebar.cc index bcd944e..1cdc590 100644 --- a/src/sidebar.cc +++ b/src/sidebar.cc @@ -193,7 +193,8 @@ void SideBar::updateEntityAnglesPitch(const QString &value) float pitch = value.toFloat(&ok); if (ok) { last_selected->set_angles(last_selected->angles()[0], pitch, last_selected->angles()[2]); - emit entityChanged(); + // entityChanged() is not required here + //emit entityChanged(); } } } @@ -205,7 +206,8 @@ void SideBar::updateEntityAnglesRoll(const QString &value) float roll = value.toFloat(&ok); if (ok) { last_selected->set_angles(last_selected->angles()[0], last_selected->angles()[1], roll); - emit entityChanged(); + // entityChanged() is not required here + //emit entityChanged(); } } } |