Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2012-02-25 17:19:54 +0000
committerStijn Buys <ingar@osirion.org>2012-02-25 17:19:54 +0000
commit7ad671f5e58df320a5744c78a745206abf0d79de (patch)
tree70e3a9dc5b0c505029830c3032b3469757e5b69b
parent409abc036f1715c7e278e4b586217461600b74d6 (diff)
Finetuned the new ./configure parameters, added Ubuntu note to the installation instructions.
-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();
}
}
}