git://source.jalview.org
/
jalview.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
51ca42a
)
JAL-3383 JAL-3253-applet bug in FontChooser calls for full redraw;
author
hansonr
<hansonr@STO24954W.ad.stolaf.edu>
Mon, 29 Jul 2019 20:30:34 +0000
(15:30 -0500)
committer
hansonr
<hansonr@STO24954W.ad.stolaf.edu>
Mon, 29 Jul 2019 20:30:34 +0000
(15:30 -0500)
should be just a new box.
src/jalview/gui/FontChooser.java
patch
|
blob
|
history
diff --git
a/src/jalview/gui/FontChooser.java
b/src/jalview/gui/FontChooser.java
index
ad41293
..
9bb133c
100755
(executable)
--- a/
src/jalview/gui/FontChooser.java
+++ b/
src/jalview/gui/FontChooser.java
@@
-215,7
+215,11
@@
public class FontChooser extends GFontChooser
{
if (ap.getOverviewPanel() != null)
{
- ap.getOverviewPanel().updateOverviewImage();
+ // changes size of rectangle
+ // BH 2019.07.29 -- updateOverviewImage forces a redraw, but all we are
+ // doing is changing the box size.
+
+ ap.getOverviewPanel().repaint();// updateOverviewImage();
}
}
}