diff options
author | Stijn Buys <ingar@osirion.org> | 2012-02-25 17:19:54 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2012-02-25 17:19:54 +0000 |
commit | 7ad671f5e58df320a5744c78a745206abf0d79de (patch) | |
tree | 70e3a9dc5b0c505029830c3032b3469757e5b69b | |
parent | 409abc036f1715c7e278e4b586217461600b74d6 (diff) |
Finetuned the new ./configure parameters, added Ubuntu note to the installation instructions.
-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(); } } } |