Workbench / alloy furnace - Changed search shortcut to '/'
(makes more sense to me)
This commit is contained in:
parent
35a228b210
commit
a38702357e
2 changed files with 2 additions and 2 deletions
|
@ -169,7 +169,7 @@ public class TBAFGui
|
|||
( (TBAFGui) this.parent ).handleFiltering( this.tfSearch.getText( ) );
|
||||
return true;
|
||||
|
||||
} else if ( typedChar == 't' || typedChar == 'T' ) {
|
||||
} else if ( typedChar == '/' ) {
|
||||
this.tfSearch.setFocused( true );
|
||||
return true;
|
||||
|
||||
|
|
|
@ -137,7 +137,7 @@ public class TBWBGui
|
|||
} else if ( this.tfSearch.textboxKeyTyped( typedChar , keyCode ) ) {
|
||||
this.handleFiltering( this.tfSearch.getText( ) );
|
||||
|
||||
} else if ( typedChar == 't' || typedChar == 'T' ) {
|
||||
} else if ( typedChar == '/' ) {
|
||||
this.tfSearch.setFocused( true );
|
||||
|
||||
} else if ( keyCode == Keyboard.KEY_LEFT && this.bPrevious.enabled ) {
|
||||
|
|
Reference in a new issue