From c52f7b4586d0794d30b16055900d1b75e48e33b9 Mon Sep 17 00:00:00 2001 From: myk Date: Fri, 1 Feb 2013 22:41:42 +0000 Subject: [PATCH] add info in tooltip about clicking filter toggles --- src/main/java/forge/gui/deckeditor/views/VCardCatalog.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/forge/gui/deckeditor/views/VCardCatalog.java b/src/main/java/forge/gui/deckeditor/views/VCardCatalog.java index e076c45379e..531100df540 100644 --- a/src/main/java/forge/gui/deckeditor/views/VCardCatalog.java +++ b/src/main/java/forge/gui/deckeditor/views/VCardCatalog.java @@ -192,7 +192,7 @@ public enum VCardCatalog implements IVDoc, ITableContainer { parentBody.add(pnlAddButtons, "w 96%!, gap 1% 1% 5 5"); parentBody.add(pnlSearch, "w 96%, gap 1% 1%"); parentBody.add(pnlRestrictions, "w 96%, gapleft 1%, gapright push"); - parentBody.add(scroller, "w 98%!, h 100% - 35px, gap 1% 0 0 1%"); + parentBody.add(scroller, "w 98%!, h 100%, gap 1% 0 0 1%"); } //========== Overridden from ITableContainer @@ -233,7 +233,7 @@ public enum VCardCatalog implements IVDoc, ITableContainer { return new FLabel.Builder() .icon(s.img).iconScaleAuto(false) .text("0").fontSize(11) - .tooltip(s.toLabelString()) + .tooltip(s.toLabelString() + "(click to toggle the filter for this card type)") .hoverable().selectable(selectable).selected(selectable) .build(); }