-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
for #447 - touch screen scrolling - not quite right but OK in
some situations. * does not pass touch events to a 'touch' method. * some errors are other Shoes 3.3.8 bugs, some are touch related.
- Loading branch information
Cecil
committed
Jul 21, 2019
1 parent
40c13f8
commit 80bf5e2
Showing
6 changed files
with
122 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
Shoes.app width: 600, height: 400, menus: false do | ||
stack do | ||
button "quit" do | ||
Shoes.quit | ||
end | ||
40.times.each do |i| | ||
para "Line #{i}" | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
Shoes.app width: 600, height: 400, menus: false do | ||
stack do | ||
button "quit" do | ||
Shoes.quit | ||
end | ||
10.times.each do |i| | ||
para "Line #{i+1}" | ||
end | ||
@eb = edit_box "First" | ||
30.times.each do |i| | ||
@eb.append "\nline #{i+1}" | ||
end | ||
30.times.each do |i| | ||
para "Line #{i+11}" | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters