mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-26 09:58:20 +01:00
apparently I missed the need to remove a couple of constants
This commit is contained in:
parent
c7a0271830
commit
deb65fbd0d
1 changed files with 1 additions and 2 deletions
|
@ -211,8 +211,7 @@ public class BoardView extends View implements DrawCtx, BoardHandler,
|
|||
public void onZoom( boolean zoomIn )
|
||||
{
|
||||
if ( null != m_jniThread ) {
|
||||
int zoomBy = zoomIn ? JNIThread.ZOOM_AMT
|
||||
: -JNIThread.ZOOM_AMT;
|
||||
int zoomBy = zoomIn ? 1 : -1;
|
||||
m_jniThread.handle( JNIThread.JNICmd.CMD_ZOOM, zoomBy );
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue