ImageEditView.st
changeset 5671 511ca27ab8d6
parent 5669 bd36e715726a
child 5695 0e68bf885fa0
equal deleted inserted replaced
5670:9aea34629aea 5671:511ca27ab8d6
  1068 inPasteMode
  1068 inPasteMode
  1069     ^ (editMode notNil and:[editMode startsWith:#paste])
  1069     ^ (editMode notNil and:[editMode startsWith:#paste])
  1070 !
  1070 !
  1071 
  1071 
  1072 keyboardZoom:largerBoolean
  1072 keyboardZoom:largerBoolean
  1073     largerBoolean ifTrue:[
  1073     "CTRL+/- zoom action"
  1074         self magnification: ((magnification + 1) min:63)
  1074 
  1075     ] ifFalse:[
  1075     self magnification:(
  1076         self magnification: ((magnification - 1) max:1)
  1076         largerBoolean 
  1077     ].    
  1077             ifTrue:[(magnification + 1) min:63]
       
  1078             ifFalse:[(magnification - 1) max:1])
  1078 !
  1079 !
  1079 
  1080 
  1080 pointerLeave:state
  1081 pointerLeave:state
  1081 
  1082 
  1082     super pointerLeave: state.
  1083     super pointerLeave: state.