MCPcopy Index your code
hub / github.com/BombusMod/BombusMod / pointerPressed

Method pointerPressed

src/main/java/ui/VirtualCanvas.java:188–202  ·  view source on GitHub ↗
(int x, int y)

Source from the content-addressed store, hash-verified

186 }
187
188 protected final void pointerPressed(int x, int y) {
189//#ifdef AUTOSTATUS
190 AutoStatus.getInstance().userActivity(Config.AWAY_IDLE);
191//#endif
192 try {
193 list.pointerPressed(x, y);
194 } catch (Exception e) {
195 if (sd.roster != null) {
196 sd.roster.errorLog("pointerpressed exception: " + e.getMessage());
197 }
198 if (StaticData.Debug)
199 e.printStackTrace();
200 }
201 repaint();
202 }
203
204 protected final void pointerDragged(int x, int y) {
205 try {

Callers

nothing calls this directly

Calls 6

getInstanceMethod · 0.95
userActivityMethod · 0.80
errorLogMethod · 0.80
pointerPressedMethod · 0.65
repaintMethod · 0.65
getMessageMethod · 0.45

Tested by

no test coverage detected