1
0
Fork 0
mirror of https://github.com/syncthing/syncthing-android.git synced 2025-01-10 20:15:54 +00:00

Merge pull request #370 from Zillode/copy-id

Only copy device ID when finger lifts
This commit is contained in:
Zillode 2015-04-29 19:32:58 +02:00
commit cdffed64af

View file

@ -184,9 +184,11 @@ public class DrawerFragment extends Fragment implements RestApi.OnReceiveSystemI
mDeviceId.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View view, MotionEvent motionEvent) {
mActivity.getApi().copyDeviceId(mDeviceId.getText().toString());
view.performClick();
return true;
if (motionEvent.getAction() == MotionEvent.ACTION_UP) {
mActivity.getApi().copyDeviceId(mDeviceId.getText().toString());
return true;
}
return false;
}
});
mCpuUsage.setText(new DecimalFormat("0.00").format(info.cpuPercent) + "%");