This commit is contained in:
Anuken
2021-02-08 09:52:41 -05:00
parent 64acd6c1e4
commit 6b19178a13

View File

@@ -77,7 +77,6 @@ public class ModsDialog extends BaseDialog{
browser.cont.pane(tablebrow -> {
tablebrow.margin(10f).top();
browserTable = tablebrow;
rebuildBrowser();
}).get().setScrollingDisabled(true, false);
browser.addCloseButton();
@@ -508,6 +507,7 @@ public class ModsDialog extends BaseDialog{
}
private String trimText(String text){
if(text == null) return "";
if(text.contains("\n")){
return text.substring(0, text.indexOf("\n"));
}