experimenting with make + minor fixes...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2016-04-30 22:56:51 +03:00
parent bf66b217c2
commit 29c090298f
2 changed files with 15 additions and 1 deletions

View File

@ -191,6 +191,16 @@ win64-dist: win64 $(DIST_DIR)
zip -r $(WIN_DIST_ZIP) $(WIN_BUILD_DIR)
win64-ext:
./targets/nwjs-shell-builder/nwjs-build.sh \
--src=./ \
--output-dir=./build/ \
--name=ImageGrid.Viewer \
--target="3" \
--version="1.0.0" \
--nw=0.14.3 \
--build
# nwjs mac
# XXX BUG: rebuilding without cleaning will mess up folders...

View File

@ -2153,7 +2153,11 @@ var BrowserPrototype = {
//this.update(options.path || this.path || '/')
// XXX is this the right way to go???
setTimeout(function(){
that.update(options.path || that.path || '/') }, 0)
that.update(options.path || that.path || '/')
// in case we have a manually selected item but not aligned...
that.selected && that.select()
}, 0)
},
}