Skip to content

Commit

Permalink
Fixes #190
Browse files Browse the repository at this point in the history
  • Loading branch information
npasserini committed Oct 21, 2016
1 parent 6d3ceb1 commit 2aa2b18
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 1 deletion.
8 changes: 8 additions & 0 deletions Iceberg.package/IceCommitModelNew.class/class/settingsOn..st
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
settings
settingsOn: aBuilder
<systemsettings>
(aBuilder setting: #'uploadChangesOnCommit')
parent: #Iceberg;
target: self;
label: 'Upload changes on commit';
description: 'If selected your code will be uploaded by default on each commit (if possible)'
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
accessing
uploadChangesOnCommit: anObject
UploadChangesOnCommit := anObject
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
accessing
uploadChangesOnCommit
^ UploadChangesOnCommit ifNil: [ UploadChangesOnCommit := true ]
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ initializeWidgets

pushCheckbox := self newCheckBox
label: 'Upload changes on commit?';
state: self class uploadChangesOnCommit;
yourself.

self focusOrder
Expand Down
2 changes: 1 addition & 1 deletion Iceberg.package/IceCommitModelNew.class/properties.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
],
"classtraitcomposition" : "TIceTool classTrait",
"classvars" : [
],
"UploadChangesOnCommit" ],
"commentStamp" : "NicoPasserini 8/25/2016 14:47",
"instvars" : [
"message",
Expand Down

0 comments on commit 2aa2b18

Please sign in to comment.