alpha
Login
or
Join now
sickday.tngl.sh
/
hla-client
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
A RuneTek3 client (377) that is deobfuscated, converted to Kotlin, and includes QoL improvements.
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
fixing offsets
author
Henning Berge
date
6 years ago
(Jan 12, 2020, 1:00 AM +0100)
commit
c13218e4
c13218e44347d95f512ad4d01e84e8c64a2524fb
parent
94fadd39
94fadd39f6bccc78c6385e76557c19e228975b1c
+3
-3
1 changed file
Expand all
Collapse all
Unified
Split
src
main
java
com
jagex
runescape
GameFrame.java
+3
-3
src/main/java/com/jagex/runescape/GameFrame.java
Reviewed
···
12
12
pack();
13
13
setTitle("Jagex");
14
14
setResizable(false);
15
15
-
gameStub.extraWidth = getInsets().left + getInsets().right;
16
16
-
gameStub.extraHeight = getInsets().top + getInsets().bottom;
17
17
-
setSize(width + gameStub.extraWidth, height + gameStub.extraHeight);
15
15
+
gameStub.extraWidth = getInsets().left;
16
16
+
gameStub.extraHeight = getInsets().top;
17
17
+
setSize(width + gameStub.extraWidth + getInsets().right, height + gameStub.extraHeight + getInsets().bottom);
18
18
setVisible(true);
19
19
toFront();
20
20