# HG changeset patch # User Chris Cannam # Date 1201542224 0 # Node ID e3ff897a60bf2149eb205ff687ad8fffc7e96315 # Parent 5544593dd8505130ba256d5b63495f8bf4988e5d * Ensure plugin version is updated when a transform is re-run using a newer plugin -- so that the plugin version saved in the session corresponds with the one that was actually used, not the one previously specified * Fix uninitialised font size in preferences -- was causing all sorts of grief diff -r 5544593dd850 -r e3ff897a60bf main/PreferencesDialog.cpp --- a/main/PreferencesDialog.cpp Wed Jan 23 18:09:50 2008 +0000 +++ b/main/PreferencesDialog.cpp Mon Jan 28 17:43:44 2008 +0000 @@ -160,6 +160,7 @@ QSpinBox *fontSize = new QSpinBox; int fs = prefs->getPropertyRangeAndValue("View Font Size", &min, &max, &deflt); + m_viewFontSize = fs; fontSize->setMinimum(min); fontSize->setMaximum(max); fontSize->setSuffix(" pt");