mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 15:18:34 +01:00
Made the bookler clear its search bar when opening a chapter
This commit is contained in:
parent
57f16ec321
commit
3ad1da0a8c
2 changed files with 6 additions and 4 deletions
|
@ -325,9 +325,7 @@ public final class BookletUtils{
|
|||
public static void openIndexEntry(GuiBooklet booklet, IBookletEntry entry, int page, boolean resetTextField){
|
||||
if(resetTextField){
|
||||
booklet.searchField.setText("");
|
||||
if(entry instanceof BookletEntryAllSearch){
|
||||
entry.setChapters(ActuallyAdditionsAPI.ALL_CHAPTERS);
|
||||
}
|
||||
updateSearchBar(booklet);
|
||||
}
|
||||
|
||||
if(booklet.currentEntrySet.getCurrentPage() != null){
|
||||
|
@ -385,6 +383,10 @@ public final class BookletUtils{
|
|||
if(booklet.currentEntrySet.getCurrentEntry() != null){
|
||||
if(booklet.currentEntrySet.getCurrentChapter() == null){
|
||||
if(place < booklet.currentEntrySet.getCurrentEntry().getChapters().size()){
|
||||
//Clear the search bar when entering a chapter
|
||||
booklet.searchField.setText("");
|
||||
updateSearchBar(booklet);
|
||||
|
||||
IBookletChapter chap = booklet.currentEntrySet.getCurrentEntry().getChapters().get(place+(booklet.chapterButtons.length*booklet.currentEntrySet.getPageInIndex()-booklet.chapterButtons.length));
|
||||
openChapter(booklet, chap, chap.getPages()[0]);
|
||||
}
|
||||
|
|
|
@ -96,7 +96,7 @@ container.nei.actuallyadditions.coffee.extra.milk=+01:00, -1 Level
|
|||
container.nei.actuallyadditions.reconstructor.name=Atomic Reconstructor
|
||||
container.nei.actuallyadditions.empowerer.name=Empowerer
|
||||
|
||||
container.nei.actuallyadditions.booklet.name=ActAdd Manual
|
||||
container.nei.actuallyadditions.booklet.name=Actually Additions Manual
|
||||
container.nei.actuallyadditions.booklet.header=The <item>Actually Additions Manual<r> says:
|
||||
container.nei.actuallyadditions.booklet.noText=Nothing, apparently! But that doesn't matter. Just click the button on the bottom to see the item inside the booklet and look through its pages to find some fancy stuff!
|
||||
|
||||
|
|
Loading…
Reference in a new issue