forked from jedwards1211/Jhrome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bugs.txt
executable file
·101 lines (56 loc) · 2.83 KB
/
bugs.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
Bug ID: 1
Created: 2012-01-25
Description: If the user closes tabs by rapidly clicking, and the add tab button slides under the mouse
and is clicked before the last closed tab has contracted, animation hangs and exceptions
result.
Fixed: 2012-01-25
Technical: When removing the selected tab, JhromeTabbedPane has to select an adjacent tab...but it
was accidentally selecting another tab that was being removed (contracting)
--------------------------------------------------------------------------------
Bug ID: 2
Created: 2012-01-25
Description: Whenever the user moves the mouse away from an unselected tab quickly, the
tab remains rolled over. (This is because mouse exit is not detected).
--------------------------------------------------------------------------------
Bug ID: 3
Created: 2012-01-26
Description: Sometimes when dragging a tab to the extreme left of the tabbed pane, other tabs
can shift into its place.
Fixed: 2012-01-26
Technical: was a +/- sign issue in JhromeTabbedPane.getInsertIndex()
--------------------------------------------------------------------------------
Bug ID: 4
Created: 2012-01-26
Description: Dragging a tab over other DnD-enabled components causes exceptions due to the
unconventional transferable created by JhromeTabbedPane.
--------------------------------------------------------------------------------
Bug ID: 5
Created: 2012-01-26
Description: When using non-uniform tab widths, if you drag a narrow tab over a wide tab,
the wide tab jiggles back and forth trying to decide where to move.
Fixed: 2012-01-26
--------------------------------------------------------------------------------
Bug ID: 6
Created: 2012-01-26
Description: When using non-uniform tab widths, it is possible to drag a wide tab past
the right end of the tab zone until it swaps positions with the rightmost tab.
Fixed: 2012-02
--------------------------------------------------------------------------------
Bug ID: 7
Created: 2012-01-26
Description: Jhrome appears to have memory leaks. Make DnD handlers and everything else
deregister properly.
--------------------------------------------------------------------------------
Bug ID: 8
Created: 2012-01-26
Description: JhromeTabbedPane does not check that added tabs already exist or are being removed.
Fixed: 2012-02
--------------------------------------------------------------------------------
Bug ID: 9
Created: 2013-03-14
Description: Tab highlights are not always working. Sometimes you have to exit the tab row
and move the mouse back into it.
Fixed: 2013-03-14
Technical details: Just had to add property change handling for rollover and selected to the
new Tab class and JhromeTabUI
--------------------------------------------------------------------------------