Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--INSTALL4
-rw-r--r--src/sidebar.cc6
2 files changed, 8 insertions, 2 deletions
diff --git a/INSTALL b/INSTALL
index 5a49c30..b7b951e 100644
--- a/INSTALL
+++ b/INSTALL
@@ -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();
}
}
}