File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
src/main/java/jme3utilities/nifty/bind Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -23,8 +23,8 @@ dependencies {
2323 api ' com.github.nifty-gui:nifty:1.4.3'
2424 api ' com.github.nifty-gui:nifty-default-controls:1.4.3'
2525
26- api ' com.github.stephengold:jme3-utilities-ui:' + jme3utilitiesuiVersion
27- // api project(':ui')
26+ // api 'com.github.stephengold:jme3-utilities-ui:' + jme3utilitiesuiVersion
27+ api project(' :ui' )
2828}
2929
3030// publishing tasks
Original file line number Diff line number Diff line change 11/*
2- Copyright (c) 2013-2017 , Stephen Gold
2+ Copyright (c) 2013-2021 , Stephen Gold
33 All rights reserved.
44
55 Redistribution and use in source and binary forms, with or without
@@ -92,7 +92,7 @@ String getActionName() {
9292 @ Override
9393 public String toString () {
9494 String result = String .format (" %s" , MyString .quote (actionName ));
95- Collection <String > names = mode .listHotkeys (actionName );
95+ Collection <String > names = mode .listHotkeysLocal (actionName );
9696 if (!names .isEmpty ()) {
9797 result += String .format (": %s" , formatList (names ));
9898 }
Original file line number Diff line number Diff line change 11/*
2- Copyright (c) 2013-2020 , Stephen Gold
2+ Copyright (c) 2013-2021 , Stephen Gold
33 All rights reserved.
44
55 Redistribution and use in source and binary forms, with or without
@@ -120,7 +120,7 @@ public String toString() {
120120 if (mode == null ) {
121121 return "" ;
122122 }
123- String name = hotkey .name ();
123+ String name = hotkey .localName ();
124124 String result = String .format (" [ %s ] ... " , name );
125125 if (isBound ()) {
126126 String action = mode .findActionName (hotkey );
You can’t perform that action at this time.
0 commit comments