Skip to content

Commit

Permalink
Some bugs fixed, JDK update
Browse files Browse the repository at this point in the history
  • Loading branch information
rodion-gudz committed Jun 18, 2021
1 parent 4fff519 commit 10baab6
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .idea/artifacts/Android_Tool_jar.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions Android-Tool.iml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@
<orderEntry type="library" exported="" name="KotlinJavaRuntime" level="project" />
<orderEntry type="library" exported="" name="FlatLaf-library" level="project" />
<orderEntry type="library" exported="" name="Maven-Artifact" level="project" />
<orderEntry type="library" name="org.jetbrains.kotlinx:kotlinx-coroutines-swing:1.5.0-native-mt" level="project" />
<orderEntry type="library" name="org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.0" level="project" />
<orderEntry type="library" name="Kotlinx-Coroutines-Swing" level="project" />
<orderEntry type="library" exported="" name="Kotlinx-Coroutines-Swing" level="project" />
</component>
</module>
3 changes: 2 additions & 1 deletion src/AndroidTool.kt
Original file line number Diff line number Diff line change
Expand Up @@ -612,9 +612,10 @@ open class AndroidTool : Command() {
labelConnect.isVisible = true
labelIP.isVisible = true

appProp.load(AndroidTool::class.java.getResource("applist.properties").openStream())

frame.isVisible = true

appProp.load(AndroidTool::class.java.getResource("applist.properties").openStream())

DatagramSocket().use { socket ->
socket.connect(InetAddress.getByName("8.8.8.8"), 10002)
Expand Down
4 changes: 2 additions & 2 deletions src/UI.kt
Original file line number Diff line number Diff line change
Expand Up @@ -964,7 +964,7 @@ open class AndroidToolUI {
radioButtonSilent.bounds = Rectangle(765, 436, 80, 20)
logsPanel.add(radioButtonSilent)
group.add(radioButtonSilent)
frame.setSize(1205, 615)
frame.setSize(1215, 615)
frame.defaultCloseOperation = JFrame.EXIT_ON_CLOSE
frame.layout = null
frame.isResizable = false
Expand Down Expand Up @@ -1076,7 +1076,7 @@ open class AndroidToolUI {
})
deviceConnection.add(textFieldIP)

tabbedpane.setBounds(320, 0, 895, 580)
tabbedpane.setBounds(320, 0, 905, 580)


logsPanel.layout = null
Expand Down

0 comments on commit 10baab6

Please sign in to comment.