2023年5月18日17:22:12
parent
15d36b504d
commit
a2fb170794
|
|
@ -534,4 +534,20 @@ public class HttpToolsController {
|
|||
public void sql_query_gen_menu_item(ActionEvent event) {
|
||||
load_sql_tools(3);
|
||||
}
|
||||
|
||||
public void socket_client_aio_menu_item(ActionEvent event) {
|
||||
load_server_tools(4);
|
||||
}
|
||||
|
||||
public void socket_server_aio_menu_item(ActionEvent event) {
|
||||
load_server_tools(5);
|
||||
}
|
||||
|
||||
public void socket_server_nio_menu_item(ActionEvent event) {
|
||||
load_server_tools(6);
|
||||
}
|
||||
|
||||
public void socket_client_nio_menu_item(ActionEvent event) {
|
||||
load_server_tools(7);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -411,7 +411,8 @@ public class PlayerController {
|
|||
listView.getSelectionModel().select(1);
|
||||
if (!flag) {
|
||||
if (Constants.getRoot(Constants.Type.Music) != null){
|
||||
music = Constants.getRoot(Constants.Type.Music);
|
||||
root = Constants.getRoot(Constants.Type.Music);
|
||||
music = root;
|
||||
}else {
|
||||
try {
|
||||
FXMLLoader load = new FXMLLoader(ResourcesUtils.getResource("music"));
|
||||
|
|
|
|||
Loading…
Reference in New Issue