Skip to content

Commit

Permalink
Added fullscreen and shutdown fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
adamrenklint committed Sep 27, 2011
1 parent aea2622 commit 718cdcd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/backend/wunderlist.js
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ wunderlist.init = function() {


// Enable shutdown fix // Enable shutdown fix
Titanium.API.addEventListener(Titanium.EXIT, function() { Titanium.API.addEventListener(Titanium.EXIT, function() {
//Titanium.Platform.canShutdown(); Titanium.Platform.canShutdown();
}); });
}; };


Expand Down
3 changes: 2 additions & 1 deletion js/frontend/notes.js
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ notes.openNotesWindow = function() {
minWidth : 500, minWidth : 500,
height : parseInt(Titanium.App.Properties.getString('note_user_height', '400')), height : parseInt(Titanium.App.Properties.getString('note_user_height', '400')),
minHeight : 400, minHeight : 400,
maximized : Titanium.App.Properties.getString('maximized', 'false') maximized : Titanium.App.Properties.getString('maximized', 'false'),
fullscreenBehaviour: 256
}); });


note_user_x = Titanium.App.Properties.getString('note_user_x', 'none'); note_user_x = Titanium.App.Properties.getString('note_user_x', 'none');
Expand Down

0 comments on commit 718cdcd

Please sign in to comment.