Skip to content

Commit

Permalink
Merge pull request #65 from jonwd7/alpha/1.2a2
Browse files Browse the repository at this point in the history
Alpha/1.2a2
  • Loading branch information
neomonkeus committed Jul 3, 2014
2 parents 2d64e52 + 274eb33 commit 9875e51
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion src/nifskope.cpp
Expand Up @@ -832,7 +832,11 @@ void NifSkope::save()
lineSave->setState( FileSelector::stSuccess );
}

setWindowTitle( nif->getFileInfo().fileName() );
// TODO: nif->getFileInfo() returns stale data
// Instead create tmp QFileInfo from lineSave text
// Future: updating file info stored in nif
QFileInfo finfo( nifname );
setWindowTitle( finfo.fileName() );
}

setEnabled( true );
Expand Down
2 changes: 1 addition & 1 deletion src/widgets/uvedit.cpp
Expand Up @@ -64,7 +64,7 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#define BASESIZE 512.0
#define GRIDSIZE 16.0
#define GRIDSEGS 4
#define ZOOMUNIT 64.0
#define ZOOMUNIT -64.0
#define MINZOOM 0.1
#define MAXZOOM 20.0
#define MAXSCALE 10.0
Expand Down

0 comments on commit 9875e51

Please sign in to comment.