Added clamp to make larger windows look better

This commit is contained in:
2022-12-21 18:58:25 -08:00
parent 29719f9eb4
commit bf6dfd1919
4 changed files with 84 additions and 49 deletions

View File

@@ -0,0 +1,10 @@
module Wince::Location
extend self
client = Geoclue::Simple.new()
def find_location()
location = client.location
[location.latitude, location.longitude]
end
end