Version 298a

fix to media viewer hover buttons
This commit is contained in:
Hydrus Network Developer 2018-03-14 16:45:12 -05:00
parent 2e35b85777
commit 76fe7117c7
1 changed files with 18 additions and 3 deletions

View File

@ -3591,7 +3591,12 @@ class CanvasFilterDuplicates( CanvasWithHovers ):
def ProcessApplicationCommand( self, command ):
def ProcessApplicationCommand( self, command, canvas_key = None ):
if canvas_key is not None and canvas_key != self._canvas_key:
return False
command_processed = True
@ -4255,7 +4260,12 @@ class CanvasMediaListFilterArchiveDelete( CanvasMediaList ):
def ProcessApplicationCommand( self, command ):
def ProcessApplicationCommand( self, command, canvas_key = None ):
if canvas_key is not None and canvas_key != self._canvas_key:
return False
command_processed = True
@ -4383,7 +4393,12 @@ class CanvasMediaListNavigable( CanvasMediaList ):
def ProcessApplicationCommand( self, command ):
def ProcessApplicationCommand( self, command, canvas_key = None ):
if canvas_key is not None and canvas_key != self._canvas_key:
return False
command_processed = True