1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Kivy/Android:

- zoom: card selection improved (bug fix)
This commit is contained in:
lufebe16 2024-11-27 09:30:03 +01:00
parent f844c0eae2
commit 289df06b95
4 changed files with 12 additions and 2 deletions

Binary file not shown.

Binary file not shown.

View file

@ -40,7 +40,7 @@ class LObjWrap(EventDispatcher):
self.bind(value=command)
def on_value(self,inst,val):
logging.info("LObjWrap: %s = %s" % (self.ref,val))
# logging.info("LObjWrap: %s = %s" % (self.ref,val))
if self.ref is not None:
setattr(self.obj,self.ref,val)

View file

@ -387,6 +387,7 @@ class LScatterFrame(Scatter):
self.scale_min = 1.0
self.scale_max = 2.2
self.lock_pos = None
self.lock_chk = None
self.offset = None
self.tkopt = None
@ -420,8 +421,10 @@ class LScatterFrame(Scatter):
dx = round(self.offset[0] * (self.bbox[1][0] - self.size[0]))
dy = round(self.offset[1] * (self.bbox[1][1] - self.size[1]))
self.pos = (self.parent.pos[0]-dx,self.parent.pos[1]-dy)
if self.lock_chk is None:
Clock.schedule_once(lambda dt: self.chk_bnd()) # noqa
self.lock_pos = None
print("_update",self.pos,self.size)
# print("_update",self.pos,self.size)
def _updatesize(self,instance,value):
self.inner.size = self.size
@ -466,6 +469,10 @@ class LScatterFrame(Scatter):
def chk_bnd(self):
# Keep the game on the screen.
# check and set lock
if self.lock_chk is not None: return
self.lock_chk = "locked"
# limiting parameters:
pos,size = self.bbox
w,h = size
@ -502,6 +509,9 @@ class LScatterFrame(Scatter):
zoominfo = [zoom, 0.0, 0.0]
self.tkopt.table_zoom.value = zoominfo
# remove lock
self.lock_chk = None
class LScrollFrame(BoxLayout,StencilView):
def __init__(self, **kw):