summaryrefslogtreecommitdiff
path: root/src/glade-project.c
diff options
context:
space:
mode:
authorTristan Van Berkom <tvb@src.gnome.org>2006-08-11 19:52:40 +0000
committerTristan Van Berkom <tvb@src.gnome.org>2006-08-11 19:52:40 +0000
commit8749ac89d0c44e3149b7e427d25fa952a7984d6a (patch)
tree4d478070f6e5a25c88d4cc876c66e4cbc7f227a1 /src/glade-project.c
parentf416917492e94131d65c1ed686b22a73dd503186 (diff)
downloadglade-8749ac89d0c44e3149b7e427d25fa952a7984d6a.tar.gz
o Fixed a bug where loaded projects were never marked with unsaved changes
* src/glade-project.c: o Fixed a bug where loaded projects were never marked with unsaved changes (since loaded propjects were infinately project->loading == TRUE).
Diffstat (limited to 'src/glade-project.c')
-rw-r--r--src/glade-project.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/glade-project.c b/src/glade-project.c
index 954f671c..efd7c463 100644
--- a/src/glade-project.c
+++ b/src/glade-project.c
@@ -1453,6 +1453,7 @@ glade_project_new_from_interface (GladeInterface *interface, const gchar *path)
* slate after calling glade_project_open().
*/
project->changed = FALSE;
+ project->loading = FALSE;
return project;
}