[go: up one dir, main page]

File: KNOWN_BUGS.html

package info (click to toggle)
fltk1.3 1.3.11-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 25,224 kB
  • sloc: cpp: 105,017; ansic: 91,383; sh: 6,825; makefile: 1,948; perl: 24; xml: 7
file content (2402 lines) | stat: -rw-r--r-- 145,217 bytes parent folder | download | duplicates (2)
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
   "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
  <title>Known Bugs and Feature Requests - Fast Light Toolkit (FLTK) 1.3.7</title>
  <meta http-equiv="Pragma" content="no-cache">
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  <link rel="stylesheet" type="text/css" href="html/fltk.css">
</head>
<body>
<h1>Known Bugs and Feature Requests in FLTK 1.3.7</h1>

<p>This is a list of open STR's (Software Trouble Reports) and RFE's
(Requests for Enhancement) at the time of the release of FLTK 1.3.7 (June 7, 2021).
The current list can be viewed online at FLTK's
<a href="https://www.fltk.org/roadmap.php#1.3">Development Roadmap</a>.
<br><br>
FLTK 1.3.7 is expected to be the last release in the 1.3.x series. Only
very serious bugs <b>may</b> be addressed in a future 1.3.x release.
<br>
All open STR's and RFE's of FLTK 1.3.x will be considered for FLTK 1.4.0,
if possible.
<br><br>
<b>Click on a bug report to see its current state or to add comments
and/or patches online.</b>
</p>

<!-- INSERT BUG LIST HEADER HERE -->

<h2><a name='1.3' id="fltk_1.3">FLTK 1.3 (63 Open Features, 57 Open Bugs)</a></h2>

<!-- END OF BUG LIST HEADER -->

<p>FLTK 1.3 is the LATEST STABLE BRANCH based on FLTK 1.1.10. It adds internationalization,
   UTF-8 (Unicode), printing support, Doxygen based documentation, and several new widgets
   including Fl_Native_File_Chooser, Fl_Table, and Fl_Tree. FLTK 1.3 is no longer in active
   development but still gets some important bug fixes (and for instance new macOS support).
   <br>
  FLTK 1.3.7 is the current stable release and will likely be the last release of this branch.
</p>
<br>

<!-- INSERT BUG LIST HERE -->

<table border='1' cellpadding='5' cellspacing='0' width='100%' summary=''>
  <tr bgcolor='#CCCCCC'>
    <th nowrap>STR #</th>
    <th nowrap>Summary</th>
    <th nowrap>Subsystem</th>
    <th nowrap>Status</th>
    <th nowrap>Priority</th>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2862'>2862</a></td>
    <td><a href='https://www.fltk.org/str.php?L2862'>Fl_Table keyboard nav issue: can't use tab to navigate
    off the widget</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2862'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2862'>Pending</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2862'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2895'>2895</a></td>
    <td><a href='https://www.fltk.org/str.php?L2895'>Fl_Tree: SINGLE mode selection issues</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2895'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2895'>Active</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2895'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2944'>2944</a></td>
    <td><a href='https://www.fltk.org/str.php?L2944'>Mac OS X Fl_Gl_Window bugs - all FLTK
    versions</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2944'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2944'>Pending</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2944'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2961'>2961</a></td>
    <td><a href='https://www.fltk.org/str.php?L2961'>1.3 very slow on X11 with Unicode locale</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2961'>X11</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2961'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2961'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3001'>3001</a></td>
    <td><a href='https://www.fltk.org/str.php?L3001'>Flickering while resizing</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3001'>X11</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3001'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3001'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3018'>3018</a></td>
    <td><a href='https://www.fltk.org/str.php?L3018'>Selects unclicked cells/rows/cols in the
    Fl_Table.</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3018'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3018'>Pending</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3018'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3030'>3030</a></td>
    <td><a href='https://www.fltk.org/str.php?L3030'>resize behavior of widgets in an Fl_Tree</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3030'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3030'>Pending</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3030'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3170'>3170</a></td>
    <td><a href='https://www.fltk.org/str.php?L3170'>Fl_Table_Row callback not called</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3170'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3170'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3170'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3235'>3235</a></td>
    <td><a href='https://www.fltk.org/str.php?L3235'>Segmentation fault in Fl_Preferences</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3235'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3235'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3235'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3252'>3252</a></td>
    <td><a href='https://www.fltk.org/str.php?L3252'>Fl_Native_File_Chooser and Fl_Gl_Window on MacOS
    X</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3252'>MacOS</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3252'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3252'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3259'>3259</a></td>
    <td><a href='https://www.fltk.org/str.php?L3259'>Incompatibilty with tmux on OSX</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3259'>MacOS</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3259'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3259'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3321'>3321</a></td>
    <td><a href='https://www.fltk.org/str.php?L3321'>[X11/Xft] Overlapping lines (font rendering
    problems)</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3321'>X11</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3321'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3321'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3337'>3337</a></td>
    <td><a href='https://www.fltk.org/str.php?L3337'>Fl_Text_Display: sometimes selection doesn't
    work</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3337'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3337'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3337'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3346'>3346</a></td>
    <td><a href='https://www.fltk.org/str.php?L3346'>FreeBSD/NetBSD: cannot build with make without running
    configure before</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3346'>Build Files</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3346'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3346'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3352'>3352</a></td>
    <td><a href='https://www.fltk.org/str.php?L3352'>Linux: Tiny window problem if child group larger than
    window</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3352'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3352'>Pending</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3352'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3358'>3358</a></td>
    <td><a href='https://www.fltk.org/str.php?L3358'>checkbox labels become bold when OPTIONS_VISIBLE_FOCUS
    is off</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3358'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3358'>Pending</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3358'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3377'>3377</a></td>
    <td><a href='https://www.fltk.org/str.php?L3377'>Fl::grab() breaks event handling for some
    controls</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3377'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3377'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3377'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3378'>3378</a></td>
    <td><a href='https://www.fltk.org/str.php?L3378'>configure.ac script changes for compiling fltk on
    Solaris</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3378'>Build Files</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3378'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3378'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3410'>3410</a></td>
    <td><a href='https://www.fltk.org/str.php?L3410'>Fl_Shared_Image:find() doesn't find some existing
    images</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3410'>Image Support</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3410'>Active</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3410'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3434'>3434</a></td>
    <td><a href='https://www.fltk.org/str.php?L3434'>Support building with unusual prefix</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3434'>Build Files</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3434'>Pending</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3434'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3441'>3441</a></td>
    <td><a href='https://www.fltk.org/str.php?L3441'>fl_filename_relative returns a wrong path</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3441'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3441'>Pending</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3441'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3458'>3458</a></td>
    <td><a href='https://www.fltk.org/str.php?L3458'>GLUT compatibility mode segfaults when there's no
    current window</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3458'>GLUT Emulation</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3458'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3458'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3462'>3462</a></td>
    <td><a href='https://www.fltk.org/str.php?L3462'>Fullscreen windows not updated when screens are added
    or removed</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3462'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3462'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3462'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3489'>3489</a></td>
    <td><a href='https://www.fltk.org/str.php?L3489'>alpha blending does not work correctly in
    Fl_Image.cxx</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3489'>Image Support</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3489'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3489'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3494'>3494</a></td>
    <td><a href='https://www.fltk.org/str.php?L3494'>check box not visible using gtk+ scheme</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3494'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3494'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3494'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3497'>3497</a></td>
    <td><a href='https://www.fltk.org/str.php?L3497'>fltk-config - support cross compile</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3497'>Build Files</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3497'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3497'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3536'>3536</a></td>
    <td><a href='https://www.fltk.org/str.php?L3536'>regression: incorrect desktop scaling in TigerVNC
    (os/x)</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3536'></a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3536'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3536'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2791'>2791</a></td>
    <td><a href='https://www.fltk.org/str.php?L2791'>Minmum size for tiles in an Fl_Tile</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2791'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2791'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2791'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2797'>2797</a></td>
    <td><a href='https://www.fltk.org/str.php?L2797'>X errors occur when XDBE disabled + Fl_Double_Windows
    resized to zero on W or H</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2797'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2797'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2797'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2828'>2828</a></td>
    <td><a href='https://www.fltk.org/str.php?L2828'>Fl_Tree RFE's</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2828'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2828'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2828'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2844'>2844</a></td>
    <td><a href='https://www.fltk.org/str.php?L2844'>Fl_Text_Display: needs keyboard nav for caret motion
    and keyboard selection</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2844'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2844'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2844'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2892'>2892</a></td>
    <td><a href='https://www.fltk.org/str.php?L2892'>Fl_Text_Display::position_to_line(): Consistency check
    ptvl failed</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2892'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2892'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2892'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2908'>2908</a></td>
    <td><a href='https://www.fltk.org/str.php?L2908'>Menu_::find_index(const char*) doesn't handle escape
    sequence correctly</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2908'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2908'>Pending</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2908'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2909'>2909</a></td>
    <td><a href='https://www.fltk.org/str.php?L2909'>Fl_Tile does not pass FL_RELEASE event to
    children</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2909'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2909'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2909'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2978'>2978</a></td>
    <td><a href='https://www.fltk.org/str.php?L2978'>FL_DND_LEAVE not passed to handle() function</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2978'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2978'>Pending</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2978'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2983'>2983</a></td>
    <td><a href='https://www.fltk.org/str.php?L2983'>Documentation isn't built correctly.</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2983'>Build Files</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2983'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2983'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3077'>3077</a></td>
    <td><a href='https://www.fltk.org/str.php?L3077'>fl_normal_measure does not give correct size for
    FL_ALIGN_IMAGE_NEXT_TO_TEXT</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3077'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3077'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3077'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3080'>3080</a></td>
    <td><a href='https://www.fltk.org/str.php?L3080'>Implicit type conversion from int64 to int32 in
    fl_draw</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3080'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3080'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3080'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3134'>3134</a></td>
    <td><a href='https://www.fltk.org/str.php?L3134'>fl_clip_box fails on X11 with large
    coordinates</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3134'>X11</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3134'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3134'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3147'>3147</a></td>
    <td><a href='https://www.fltk.org/str.php?L3147'>Assigning Ctrl+Shift+0 to a Fl_Sys_Menu_Bar item does
    not work using Visual Studio 2012</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3147'>WIN32</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3147'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3147'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3175'>3175</a></td>
    <td><a href='https://www.fltk.org/str.php?L3175'>Fl_Text_Editor overstrike mode doesn't behave as
    expected</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3175'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3175'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3175'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3186'>3186</a></td>
    <td><a href='https://www.fltk.org/str.php?L3186'>fl_filename_match() inconsistent with case
    sensitivity</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3186'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3186'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3186'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3201'>3201</a></td>
    <td><a href='https://www.fltk.org/str.php?L3201'>unix Fl_Window::show _NET_ACTIVE_WINDOW event needed
    to raise</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3201'>X11</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3201'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3201'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3214'>3214</a></td>
    <td><a href='https://www.fltk.org/str.php?L3214'>Fl_Tree::clear() does not delete widgets (only
    items)</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3214'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3214'>Pending</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3214'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3220'>3220</a></td>
    <td><a href='https://www.fltk.org/str.php?L3220'>Can select multiple items in Fl_Tree even in
    FL_TREE_SELECT_SINGLE mode</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3220'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3220'>Active</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3220'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3261'>3261</a></td>
    <td><a href='https://www.fltk.org/str.php?L3261'>FLTK and glutChangeToMenuEntry</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3261'>GLUT Emulation</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3261'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3261'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3273'>3273</a></td>
    <td><a href='https://www.fltk.org/str.php?L3273'>Fl::screen_dpi() returns generic Xinerama
    values</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3273'>X11</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3273'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3273'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3282'>3282</a></td>
    <td><a href='https://www.fltk.org/str.php?L3282'>Fl_Table::handle() returns 1 on right clicks</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3282'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3282'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3282'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3290'>3290</a></td>
    <td><a href='https://www.fltk.org/str.php?L3290'>Fl_Help_Dialog does not number ordered lists</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3290'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3290'>Pending</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3290'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3292'>3292</a></td>
    <td><a href='https://www.fltk.org/str.php?L3292'>Fl_Browser: trouble pre-selecting item #1 with type()
    HOLD or SELECT</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3292'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3292'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3292'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3293'>3293</a></td>
    <td><a href='https://www.fltk.org/str.php?L3293'>show_item_top() causes tree redraw position
    bug</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3293'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3293'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3293'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3301'>3301</a></td>
    <td><a href='https://www.fltk.org/str.php?L3301'>Fl_Text_Display::scroll(line) not working with
    wrap_mode()</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3301'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3301'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3301'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3341'>3341</a></td>
    <td><a href='https://www.fltk.org/str.php?L3341'>Fl_File_Chooser has no icons under more recent
    distributions</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3341'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3341'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3341'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3382'>3382</a></td>
    <td><a href='https://www.fltk.org/str.php?L3382'>wrong DC clean-up on Windows</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3382'>WIN32</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3382'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3382'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3408'>3408</a></td>
    <td><a href='https://www.fltk.org/str.php?L3408'>setting Fl_Scroll inactive doesn't draw the background
    inactive</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3408'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3408'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3408'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3409'>3409</a></td>
    <td><a href='https://www.fltk.org/str.php?L3409'>libpng</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3409'>MacOS</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3409'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3409'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3438'>3438</a></td>
    <td><a href='https://www.fltk.org/str.php?L3438'>using ASCII function when Unicode version is available
    (mingw-w64)</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3438'>Unicode support</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3438'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3438'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2676'>2676</a></td>
    <td><a href='https://www.fltk.org/str.php?L2676'>Enhance error reporting on broken Xft installations
    (was:fl_alert dialogs etc crashes in XftTextExtents32 on Solaris)</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2676'>X11</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2676'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2676'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2728'>2728</a></td>
    <td><a href='https://www.fltk.org/str.php?L2728'>Add test program to test for shadowed variables
    (-Wshadow)</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2728'>Test Framework</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2728'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2728'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2790'>2790</a></td>
    <td><a href='https://www.fltk.org/str.php?L2790'>Patch allow fluid generate constructor without
    arguments for Widget_Class</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2790'>FLUID</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2790'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2790'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2794'>2794</a></td>
    <td><a href='https://www.fltk.org/str.php?L2794'>Fluid hacked</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2794'>FLUID</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2794'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2794'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2815'>2815</a></td>
    <td><a href='https://www.fltk.org/str.php?L2815'>Implementation of Fl_Text_Display backdrop</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2815'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2815'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2815'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2821'>2821</a></td>
    <td><a href='https://www.fltk.org/str.php?L2821'>MouseWheel acceleration patch</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2821'>OS support</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2821'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2821'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2824'>2824</a></td>
    <td><a href='https://www.fltk.org/str.php?L2824'>Adding scroller animation to FLTK</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2824'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2824'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2824'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2838'>2838</a></td>
    <td><a href='https://www.fltk.org/str.php?L2838'>Add Colors to FL_Text_Display (+ underscore +
    strikethru)</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2838'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2838'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2838'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2842'>2842</a></td>
    <td><a href='https://www.fltk.org/str.php?L2842'>putting new widget on place of user's click</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2842'>FLUID</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2842'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2842'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2843'>2843</a></td>
    <td><a href='https://www.fltk.org/str.php?L2843'>Fluid: "space evenly" makes the same distance between
    pairs</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2843'>FLUID</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2843'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2843'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2867'>2867</a></td>
    <td><a href='https://www.fltk.org/str.php?L2867'>ADding bgcolor to Style_Table_Entry</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2867'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2867'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2867'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2875'>2875</a></td>
    <td><a href='https://www.fltk.org/str.php?L2875'>More general methods to select fonts with attributes
    BOLD/ITALIC (Patch supplied)</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2875'>X11</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2875'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2875'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2882'>2882</a></td>
    <td><a href='https://www.fltk.org/str.php?L2882'>a minimum knob-size for Fl_Scrollbar widget</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2882'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2882'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2882'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2894'>2894</a></td>
    <td><a href='https://www.fltk.org/str.php?L2894'>problem with pressed_menu_button_</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2894'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2894'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2894'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2896'>2896</a></td>
    <td><a href='https://www.fltk.org/str.php?L2896'>Better looking menu dividers</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2896'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2896'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2896'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2902'>2902</a></td>
    <td><a href='https://www.fltk.org/str.php?L2902'>FL_HOLD_BROWSER selection positioning</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2902'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2902'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2902'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2923'>2923</a></td>
    <td><a href='https://www.fltk.org/str.php?L2923'>New Cursors for fltk-1.3</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2923'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2923'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2923'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2924'>2924</a></td>
    <td><a href='https://www.fltk.org/str.php?L2924'>New Cursors for fltk-1.3 and fltk-3.0</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2924'>WIN32</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2924'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2924'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2926'>2926</a></td>
    <td><a href='https://www.fltk.org/str.php?L2926'>Remove hardcoded extra pixels from menu window
    size</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2926'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2926'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2926'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2936'>2936</a></td>
    <td><a href='https://www.fltk.org/str.php?L2936'>fluid: needs mods to allow defining a
    'namespace'</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2936'>FLUID</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2936'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2936'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2941'>2941</a></td>
    <td><a href='https://www.fltk.org/str.php?L2941'>RFE: fl_text_extents(): support multiple
    lines</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2941'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2941'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2941'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2950'>2950</a></td>
    <td><a href='https://www.fltk.org/str.php?L2950'>Menu Item behaviour</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2950'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2950'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2950'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2952'>2952</a></td>
    <td><a href='https://www.fltk.org/str.php?L2952'>fluid - Adding win32 icon</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2952'>WIN32</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2952'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2952'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2980'>2980</a></td>
    <td><a href='https://www.fltk.org/str.php?L2980'>Fl::event_text() returns no meaningful value for
    FL_DND_ENTER and FL_DND_DRAG on Windows</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2980'>WIN32</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2980'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2980'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2981'>2981</a></td>
    <td><a href='https://www.fltk.org/str.php?L2981'>Fl::event_text() returns "&lt;unknown&gt;" for
    FL_DND_ENTER and FL_DND_DRAG on X11</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2981'>X11</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2981'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2981'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2992'>2992</a></td>
    <td><a href='https://www.fltk.org/str.php?L2992'>New widget: Fl_Gl_Window_Group</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2992'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2992'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2992'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3003'>3003</a></td>
    <td><a href='https://www.fltk.org/str.php?L3003'>New class Fl_Toggle_Browser for fltk-1.3.x .</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3003'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3003'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3003'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3007'>3007</a></td>
    <td><a href='https://www.fltk.org/str.php?L3007'>Suggestion for improvement to the standard
    file-chooser.</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3007'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3007'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3007'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3015'>3015</a></td>
    <td><a href='https://www.fltk.org/str.php?L3015'>Allow hiding scrollbars in Fl_Help_View</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3015'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3015'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3015'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3017'>3017</a></td>
    <td><a href='https://www.fltk.org/str.php?L3017'>FLTK &amp; icons for each scheme.</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3017'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3017'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3017'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3020'>3020</a></td>
    <td><a href='https://www.fltk.org/str.php?L3020'>Function for blending two images with different depth
    of color.</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3020'>Image Support</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3020'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3020'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3021'>3021</a></td>
    <td><a href='https://www.fltk.org/str.php?L3021'>Logotip for FLTK</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3021'>None</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3021'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3021'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3029'>3029</a></td>
    <td><a href='https://www.fltk.org/str.php?L3029'>Build FLTK via Clang compiler and native Windows
    tools</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3029'>Build Files</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3029'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3029'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3052'>3052</a></td>
    <td><a href='https://www.fltk.org/str.php?L3052'>Fl_Tabs enhancement: tab scrolling when there are too
    many tabs</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3052'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3052'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3052'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3053'>3053</a></td>
    <td><a href='https://www.fltk.org/str.php?L3053'>Fl_Tabs enhancement - being able to move tabs
    around</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3053'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3053'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3053'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3074'>3074</a></td>
    <td><a href='https://www.fltk.org/str.php?L3074'>Patch for Browser supporting copy to clipboard of
    selected lines</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3074'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3074'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3074'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3092'>3092</a></td>
    <td><a href='https://www.fltk.org/str.php?L3092'>Fl_Pack: add right-to-left and bottom-to-top
    packing</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3092'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3092'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3092'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3094'>3094</a></td>
    <td><a href='https://www.fltk.org/str.php?L3094'>Fl_Scroll: to control the hscrollbar by wheel of
    mouse</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3094'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3094'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3094'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3112'>3112</a></td>
    <td><a href='https://www.fltk.org/str.php?L3112'>whether we should define these macros in FLTK sourse
    files?(strdup stricmp...)</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3112'>Multiple</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3112'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3112'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3126'>3126</a></td>
    <td><a href='https://www.fltk.org/str.php?L3126'>Image resizing algorithm</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3126'>Image Support</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3126'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3126'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3136'>3136</a></td>
    <td><a href='https://www.fltk.org/str.php?L3136'>Patch to add an option to the Fl_Native_file_Chooser
    and Fl_File_Chooser to allow selection of either a file or a directory</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3136'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3136'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3136'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3171'>3171</a></td>
    <td><a href='https://www.fltk.org/str.php?L3171'>Equivalent of names.h for Fl_Table::TableContext
    enum</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3171'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3171'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3171'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3174'>3174</a></td>
    <td><a href='https://www.fltk.org/str.php?L3174'>Scrollbar of deactivated Fl_Text_Editor not
    working</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3174'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3174'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3174'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3180'>3180</a></td>
    <td><a href='https://www.fltk.org/str.php?L3180'>Linux printer panel, 3 problems</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3180'>X11</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3180'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3180'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3181'>3181</a></td>
    <td><a href='https://www.fltk.org/str.php?L3181'>3d pie chart</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3181'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3181'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3181'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3189'>3189</a></td>
    <td><a href='https://www.fltk.org/str.php?L3189'>Diagonal cursors from themes for Linux
    (patch)</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3189'>X11</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3189'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3189'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3193'>3193</a></td>
    <td><a href='https://www.fltk.org/str.php?L3193'>Change the Background Color of Checkboxes and Radio
    Round Indicators for Deactivated Fl_Check_Buttons and Fl_Radio_Round_Buttons</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3193'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3193'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3193'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3210'>3210</a></td>
    <td><a href='https://www.fltk.org/str.php?L3210'>FLTK 1.3.3 indentation fixed fluid version</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3210'>FLUID</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3210'>Pending</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3210'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3218'>3218</a></td>
    <td><a href='https://www.fltk.org/str.php?L3218'>method for deleting child from a Fl_Group</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3218'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3218'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3218'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3229'>3229</a></td>
    <td><a href='https://www.fltk.org/str.php?L3229'>X11 dual clipboard control</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3229'>X11</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3229'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3229'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3240'>3240</a></td>
    <td><a href='https://www.fltk.org/str.php?L3240'>Fl_Html_View - more capable replacement for
    Fl_Help_View</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3240'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3240'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3240'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3260'>3260</a></td>
    <td><a href='https://www.fltk.org/str.php?L3260'>FLTK's glut and special key combinations on OS
    X</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3260'>MacOS</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3260'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3260'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3279'>3279</a></td>
    <td><a href='https://www.fltk.org/str.php?L3279'>RFE: option to disable special character handling in
    menus</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3279'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3279'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3279'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3317'>3317</a></td>
    <td><a href='https://www.fltk.org/str.php?L3317'>Fl_Sys_Menu_Bar: needs documentation caveats</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3317'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3317'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3317'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3329'>3329</a></td>
    <td><a href='https://www.fltk.org/str.php?L3329'>Support for tablet features (pen pressure, tilt,
    etc)</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3329'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3329'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3329'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3330'>3330</a></td>
    <td><a href='https://www.fltk.org/str.php?L3330'>Fl_Window transparency control in FLTK</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3330'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3330'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3330'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3393'>3393</a></td>
    <td><a href='https://www.fltk.org/str.php?L3393'>enable DND for Fl_Window</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3393'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3393'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3393'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3426'>3426</a></td>
    <td><a href='https://www.fltk.org/str.php?L3426'>Fluid Browser Window: Add status bar at bottom when
    "Show Completion Dialogs" are disabled</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3426'>FLUID</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3426'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3426'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3440'>3440</a></td>
    <td><a href='https://www.fltk.org/str.php?L3440'>Drawing bitmap text in Fl_Gl_Window is impossible in
    macOS when initialized with FL_OPENGL3</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3440'>OpenGL</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3440'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3440'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3456'>3456</a></td>
    <td><a href='https://www.fltk.org/str.php?L3456'>Fl_Input Readonly Cursor</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3456'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3456'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3456'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3466'>3466</a></td>
    <td><a href='https://www.fltk.org/str.php?L3466'>FLTK and 16 images</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3466'>Image Support</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3466'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3466'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3492'>3492</a></td>
    <td><a href='https://www.fltk.org/str.php?L3492'>fltk-config shouldn't report its own
    dependencies</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3492'>Config Files</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3492'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3492'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3533'>3533</a></td>
    <td><a href='https://www.fltk.org/str.php?L3533'>Fl_Counter with fixed arrow widths - preliminary code
    sample</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3533'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3533'>Pending</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3533'>RFE</a></td>
  </tr>
</table>
<h2><a name='1.4' id="fltk-1.4">FLTK 1.4 (121 Open Features, 68 Open Bugs)</a></h2>
<p>FLTK 1.4 will add even more features to the FLTK 1 branch. This is the CURRENT DEVELOPMENT BRANCH where
new features are added and bugs are fixed.<br>
There is no release schedule yet.</p><br>
<table border='1' cellpadding='5' cellspacing='0' width='100%' summary=''>
  <tr bgcolor='#CCCCCC'>
    <th nowrap>STR #</th>
    <th nowrap>Summary</th>
    <th nowrap>Subsystem</th>
    <th nowrap>Status</th>
    <th nowrap>Priority</th>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L1869'>1869</a></td>
    <td><a href='https://www.fltk.org/str.php?L1869'>avoid recursing event handlers (Fl::readqueue,
    Fl::check)</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1869'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1869'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1869'>HIGH</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L1986'>1986</a></td>
    <td><a href='https://www.fltk.org/str.php?L1986'>X-server freezes when a window is opened while the
    menu is open</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1986'>X11</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1986'>Pending</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1986'>HIGH</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2634'>2634</a></td>
    <td><a href='https://www.fltk.org/str.php?L2634'>fl_help_view bug fixes and new features</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2634'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2634'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2634'>HIGH</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2639'>2639</a></td>
    <td><a href='https://www.fltk.org/str.php?L2639'>Fl_Pack resizes hidden widgets, which it doesn't touch
    when visible.</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2639'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2639'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2639'>HIGH</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2678'>2678</a></td>
    <td><a href='https://www.fltk.org/str.php?L2678'>internationalization (fluid)</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2678'>FLUID</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2678'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2678'>HIGH</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2861'>2861</a></td>
    <td><a href='https://www.fltk.org/str.php?L2861'>Enabling "Extract gettext" on fluid menus +
    possibility of static initialization of strings</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2861'>FLUID</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2861'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2861'>HIGH</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3231'>3231</a></td>
    <td><a href='https://www.fltk.org/str.php?L3231'>editor.cxx: changed_cb() inducing reading
    uninitialized memory</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3231'>Example Programs</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3231'>Pending</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3231'>HIGH</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3238'>3238</a></td>
    <td><a href='https://www.fltk.org/str.php?L3238'>Fl_Group::clear method should be virtual</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3238'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3238'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3238'>HIGH</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3242'>3242</a></td>
    <td><a href='https://www.fltk.org/str.php?L3242'>Re-enable nested (aka "recursive") common
    dialogs</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3242'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3242'>Active</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3242'>HIGH</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3271'>3271</a></td>
    <td><a href='https://www.fltk.org/str.php?L3271'>Socket for MS-WINDOWS is UINT_PTR</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3271'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3271'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3271'>HIGH</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3284'>3284</a></td>
    <td><a href='https://www.fltk.org/str.php?L3284'>Cairo integration needs redesign</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3284'>Cairo</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3284'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3284'>HIGH</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3289'>3289</a></td>
    <td><a href='https://www.fltk.org/str.php?L3289'>Fl_Menu_Items don't have i18n function in them when
    spit from fluid</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3289'>FLUID</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3289'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3289'>HIGH</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3327'>3327</a></td>
    <td><a href='https://www.fltk.org/str.php?L3327'>Public members Fl::awake_ring_*_ should be
    private</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3327'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3327'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3327'>HIGH</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3399'>3399</a></td>
    <td><a href='https://www.fltk.org/str.php?L3399'>X11 Drag and drop issue when displaying popup on
    recept of payload</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3399'>X11</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3399'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3399'>HIGH</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3413'>3413</a></td>
    <td><a href='https://www.fltk.org/str.php?L3413'>security advisory: all use of *snprintf()</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3413'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3413'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3413'>HIGH</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3436'>3436</a></td>
    <td><a href='https://www.fltk.org/str.php?L3436'>use of isspace(), ispunct(), and others must correctly
    test unicode characters</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3436'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3436'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3436'>HIGH</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3514'>3514</a></td>
    <td><a href='https://www.fltk.org/str.php?L3514'>Bundled image libs on Linux are incompatible with
    Xft</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3514'>Build Files</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3514'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3514'>HIGH</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L24'>24</a></td>
    <td><a href='https://www.fltk.org/str.php?L24'>Fluid should support sub-windows</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L24'>FLUID</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L24'>Pending</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L24'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L1650'>1650</a></td>
    <td><a href='https://www.fltk.org/str.php?L1650'>relative widget image path is uncorrect if fl file not
    saved where created</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1650'>FLUID</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1650'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1650'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L1859'>1859</a></td>
    <td><a href='https://www.fltk.org/str.php?L1859'>Fluid callbacks in declaration blocks not working
    correctly</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1859'>FLUID</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1859'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1859'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L1919'>1919</a></td>
    <td><a href='https://www.fltk.org/str.php?L1919'>Fl_Tile uses resizable() interface for different
    functionality</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1919'>None</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1919'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1919'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L1993'>1993</a></td>
    <td><a href='https://www.fltk.org/str.php?L1993'>No redraw when dragging windows</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1993'>WIN32</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1993'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1993'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2112'>2112</a></td>
    <td><a href='https://www.fltk.org/str.php?L2112'>OSX: changing a window's size() affects size_range()
    max</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2112'>MacOS</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2112'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2112'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2131'>2131</a></td>
    <td><a href='https://www.fltk.org/str.php?L2131'>test/help: The 'search window' doesn't work for text
    within &lt;PRE&gt;</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2131'>Example Programs</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2131'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2131'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2284'>2284</a></td>
    <td><a href='https://www.fltk.org/str.php?L2284'>Bad return value handling from "getc" in Fl_BMP_Image
    c'tor</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2284'>Image Support</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2284'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2284'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2306'>2306</a></td>
    <td><a href='https://www.fltk.org/str.php?L2306'>fltk's use of snprintf() should be hardened --
    recommend alternatives</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2306'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2306'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2306'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2663'>2663</a></td>
    <td><a href='https://www.fltk.org/str.php?L2663'>OpenGL overlay bug on Windows 7 + Intel
    graphics</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2663'>OpenGL</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2663'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2663'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3013'>3013</a></td>
    <td><a href='https://www.fltk.org/str.php?L3013'>Fixes to use of config.h header</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3013'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3013'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3013'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3287'>3287</a></td>
    <td><a href='https://www.fltk.org/str.php?L3287'>Potential array overrun in Fl::get_font()</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3287'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3287'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3287'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3357'>3357</a></td>
    <td><a href='https://www.fltk.org/str.php?L3357'>fltk-1.4.x-r12117 Windows Data Types bug</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3357'>WIN32</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3357'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3357'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3364'>3364</a></td>
    <td><a href='https://www.fltk.org/str.php?L3364'>Fl_Text_Display: wrong text width calculation</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3364'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3364'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3364'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3412'>3412</a></td>
    <td><a href='https://www.fltk.org/str.php?L3412'>Fl_Text_Display scroll bug (style table with font !=
    textsize() + wrap)</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3412'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3412'>Pending</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3412'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3415'>3415</a></td>
    <td><a href='https://www.fltk.org/str.php?L3415'>CMake: Programs may need some definitions from FLTK to
    work correctly</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3415'>Build Files</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3415'>Active</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3415'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3416'>3416</a></td>
    <td><a href='https://www.fltk.org/str.php?L3416'>Changes to compile FLTK 1.4 with OpenWatcom
    1.9</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3416'>Build Files</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3416'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3416'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3419'>3419</a></td>
    <td><a href='https://www.fltk.org/str.php?L3419'>examples/OpenGL*.cxx needs Makefile entries</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3419'>Build Files</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3419'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3419'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3443'>3443</a></td>
    <td><a href='https://www.fltk.org/str.php?L3443'>cmake/Visual Studio: control /MT vs /MD compiler
    flags</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3443'>Build Files</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3443'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3443'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3454'>3454</a></td>
    <td><a href='https://www.fltk.org/str.php?L3454'>MinGW build errors (undefined: S_OK and
    __FD_ISSET)</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3454'>WIN32</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3454'>Pending</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3454'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3465'>3465</a></td>
    <td><a href='https://www.fltk.org/str.php?L3465'>scilinux 6.3: Setting FL_SCREEN font falling back to
    FL_HELVETICA</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3465'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3465'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3465'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3508'>3508</a></td>
    <td><a href='https://www.fltk.org/str.php?L3508'>fltk2ms() could be public, also does not translate
    KP_Enter</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3508'>WIN32</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3508'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3508'>MOD</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L469'>469</a></td>
    <td><a href='https://www.fltk.org/str.php?L469'>Drawing problem when FL_ROUNDED_BOX and
    Fl_Menu_Button</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L469'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L469'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L469'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L702'>702</a></td>
    <td><a href='https://www.fltk.org/str.php?L702'>Fl_Scrollbar increments incorrectly in specific
    situation</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L702'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L702'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L702'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L810'>810</a></td>
    <td><a href='https://www.fltk.org/str.php?L810'>Fl_File_Chooser value(const char*) not wholly
    functional</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L810'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L810'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L810'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L1115'>1115</a></td>
    <td><a href='https://www.fltk.org/str.php?L1115'>Windows shown while popup menu was active disappear
    when the menu is dismissed.</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1115'>WIN32</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1115'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1115'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L1373'>1373</a></td>
    <td><a href='https://www.fltk.org/str.php?L1373'>per-window vsync control</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1373'>OpenGL</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1373'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1373'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L1597'>1597</a></td>
    <td><a href='https://www.fltk.org/str.php?L1597'>Fl_Help_View: HTML problems with font size +
    &lt;UL&gt;</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1597'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1597'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1597'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L1679'>1679</a></td>
    <td><a href='https://www.fltk.org/str.php?L1679'>Borderless windows on WIN32 do not appear on the
    taskbar</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1679'>WIN32</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1679'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1679'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L1742'>1742</a></td>
    <td><a href='https://www.fltk.org/str.php?L1742'>Fl_Browser: Inconsistent behavior of value()</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1742'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1742'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1742'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L1860'>1860</a></td>
    <td><a href='https://www.fltk.org/str.php?L1860'>Would like ability to specify software rendering for
    OpenGL contexts</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1860'>OpenGL</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1860'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1860'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L1925'>1925</a></td>
    <td><a href='https://www.fltk.org/str.php?L1925'>Fl_Text_Display should have a member for secondary
    selection color</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1925'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1925'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1925'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L1997'>1997</a></td>
    <td><a href='https://www.fltk.org/str.php?L1997'>fl_file_chooser(...) has a glitch</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1997'>WIN32</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1997'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1997'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2132'>2132</a></td>
    <td><a href='https://www.fltk.org/str.php?L2132'>Fluid's Write Code shortcut does not work</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2132'>FLUID</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2132'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2132'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2145'>2145</a></td>
    <td><a href='https://www.fltk.org/str.php?L2145'>FL_ROUND_UP_BOX+Fl_Button+"gtk+" scheme: focus box
    draws outside widget</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2145'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2145'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2145'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2251'>2251</a></td>
    <td><a href='https://www.fltk.org/str.php?L2251'>Fl_Pack resize() and draw() behavior should be
    improved</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2251'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2251'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2251'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2617'>2617</a></td>
    <td><a href='https://www.fltk.org/str.php?L2617'>Inconsistent behavior for Fl_Window on win32</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2617'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2617'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2617'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2658'>2658</a></td>
    <td><a href='https://www.fltk.org/str.php?L2658'>set_fonts() comments</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2658'>Documentation</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2658'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2658'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2901'>2901</a></td>
    <td><a href='https://www.fltk.org/str.php?L2901'>Fl_Browser format codes</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2901'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2901'>Pending</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2901'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3179'>3179</a></td>
    <td><a href='https://www.fltk.org/str.php?L3179'>Opening a popup dialog while a menu is open hangs
    X</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3179'>X11</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3179'>Pending</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3179'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3334'>3334</a></td>
    <td><a href='https://www.fltk.org/str.php?L3334'>Minor bug fixes to Fl_Tabs.</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3334'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3334'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3334'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3354'>3354</a></td>
    <td><a href='https://www.fltk.org/str.php?L3354'>v1.4: Include file discrepancy to v1.3</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3354'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3354'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3354'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3368'>3368</a></td>
    <td><a href='https://www.fltk.org/str.php?L3368'>Fl_Help_View may leak memory when images are in the
    HTML</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3368'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3368'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3368'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3396'>3396</a></td>
    <td><a href='https://www.fltk.org/str.php?L3396'>Window manager warning: Buggy client sent a
    _NET_ACTIVE_WINDOW message with a timestamp of 0</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3396'>X11</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3396'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3396'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3448'>3448</a></td>
    <td><a href='https://www.fltk.org/str.php?L3448'>fl_text_extents() width not correct with Xft+Pango and
    internal italic/bold fonts</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3448'>X11</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3448'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3448'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3449'>3449</a></td>
    <td><a href='https://www.fltk.org/str.php?L3449'>FL_Window - New SKIP_TASKBAR Flag and Patch</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3449'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3449'>Active</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3449'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3461'>3461</a></td>
    <td><a href='https://www.fltk.org/str.php?L3461'>Follow up to: [RFE] STR #2927: Please make 'LEADING'
    constant in FL_Menu.cxx an alterable API method</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3461'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3461'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3461'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3470'>3470</a></td>
    <td><a href='https://www.fltk.org/str.php?L3470'>In fluid code editor, cursor turns into gray box on
    typing</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3470'>FLUID</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3470'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3470'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3471'>3471</a></td>
    <td><a href='https://www.fltk.org/str.php?L3471'>CMake improvements</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3471'>Build Files</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3471'>Pending</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3471'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3476'>3476</a></td>
    <td><a href='https://www.fltk.org/str.php?L3476'>nanosvg: rendering artecfacts under certain conditions
    (rounding?)</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3476'>Image Support</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3476'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3476'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3528'>3528</a></td>
    <td><a href='https://www.fltk.org/str.php?L3528'>Fl_Tree: dragging an item over a widget() can cause
    FL_RELEASE to be ignored</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3528'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3528'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3528'>LOW</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L45'>45</a></td>
    <td><a href='https://www.fltk.org/str.php?L45'>Help_View does not handle tables with border properly
    (and more)</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L45'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L45'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L45'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L214'>214</a></td>
    <td><a href='https://www.fltk.org/str.php?L214'>function objects for callbacks.</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L214'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L214'>Pending</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L214'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L298'>298</a></td>
    <td><a href='https://www.fltk.org/str.php?L298'>FLUID "commenting out" would be nice</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L298'>FLUID</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L298'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L298'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L334'>334</a></td>
    <td><a href='https://www.fltk.org/str.php?L334'>technical change : remove statics in fl_ask</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L334'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L334'>Active</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L334'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L460'>460</a></td>
    <td><a href='https://www.fltk.org/str.php?L460'>Provide save() member function to Fl_Image
    subclasses</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L460'>Image Support</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L460'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L460'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L470'>470</a></td>
    <td><a href='https://www.fltk.org/str.php?L470'>up / down indicator when portion of menu is off
    screen</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L470'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L470'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L470'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L749'>749</a></td>
    <td><a href='https://www.fltk.org/str.php?L749'>Enable a right-click copy/paste menu for all
    Input/Output/Editor/Display widgets</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L749'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L749'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L749'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L767'>767</a></td>
    <td><a href='https://www.fltk.org/str.php?L767'>Removeing titlebar but keeping border.(win32)</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L767'>WIN32</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L767'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L767'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L829'>829</a></td>
    <td><a href='https://www.fltk.org/str.php?L829'>Support for animated GIFs in Fl_GIF_Image</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L829'>Image Support</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L829'>Pending</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L829'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L900'>900</a></td>
    <td><a href='https://www.fltk.org/str.php?L900'>Fl::add_timeout will also consume all the time of
    embedded low speed CPU</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L900'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L900'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L900'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L1029'>1029</a></td>
    <td><a href='https://www.fltk.org/str.php?L1029'>Fl::font(), Fl::size(), etc. for changing
    defaults</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1029'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1029'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1029'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L1903'>1903</a></td>
    <td><a href='https://www.fltk.org/str.php?L1903'>Check for missing functionalities from original UTF8
    patch</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1903'>Unicode support</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1903'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1903'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L1923'>1923</a></td>
    <td><a href='https://www.fltk.org/str.php?L1923'>Enhance non-modal windows on Mac OS X</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1923'>MacOS</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1923'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1923'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L1981'>1981</a></td>
    <td><a href='https://www.fltk.org/str.php?L1981'>[PATCH] Add "stay on top"-feature to
    Fl_Window</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1981'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1981'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1981'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L1984'>1984</a></td>
    <td><a href='https://www.fltk.org/str.php?L1984'>provide a hook to override default event
    delivery</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1984'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1984'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1984'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L1989'>1989</a></td>
    <td><a href='https://www.fltk.org/str.php?L1989'>Support for Multiple Cursor interaction (MPX)</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1989'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1989'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L1989'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2014'>2014</a></td>
    <td><a href='https://www.fltk.org/str.php?L2014'>Digital Mars C++ support for FLTK 1.3</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2014'>Multiple</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2014'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2014'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2022'>2022</a></td>
    <td><a href='https://www.fltk.org/str.php?L2022'>Deriving from Fl_Chart</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2022'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2022'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2022'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2041'>2041</a></td>
    <td><a href='https://www.fltk.org/str.php?L2041'>Addition of a FL_TOOLTIP event (PoC)</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2041'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2041'>Pending</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2041'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2059'>2059</a></td>
    <td><a href='https://www.fltk.org/str.php?L2059'>Support for CDash</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2059'>Build Files</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2059'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2059'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2060'>2060</a></td>
    <td><a href='https://www.fltk.org/str.php?L2060'>fluid should rewrite files conservatively on "Write
    Code"</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2060'>FLUID</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2060'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2060'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2081'>2081</a></td>
    <td><a href='https://www.fltk.org/str.php?L2081'>add opengl 3 support to fltk</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2081'>OpenGL</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2081'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2081'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2083'>2083</a></td>
    <td><a href='https://www.fltk.org/str.php?L2083'>Add maximize, minimize caps to FL_Window</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2083'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2083'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2083'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2118'>2118</a></td>
    <td><a href='https://www.fltk.org/str.php?L2118'>Multisample support on Windows</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2118'>OpenGL</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2118'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2118'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2148'>2148</a></td>
    <td><a href='https://www.fltk.org/str.php?L2148'>Use iconv() if provided by glibc</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2148'>OS support</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2148'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2148'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2154'>2154</a></td>
    <td><a href='https://www.fltk.org/str.php?L2154'>Support XIM on UTF-8 and GBK locale, update XIM
    support on GB2312.</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2154'>Unicode support</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2154'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2154'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2162'>2162</a></td>
    <td><a href='https://www.fltk.org/str.php?L2162'>[PATCH] Wrap CJK characters in Fl_Input_</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2162'>Unicode support</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2162'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2162'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2175'>2175</a></td>
    <td><a href='https://www.fltk.org/str.php?L2175'>why dose not FLTK support framebuffer
    directly?</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2175'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2175'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2175'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2177'>2177</a></td>
    <td><a href='https://www.fltk.org/str.php?L2177'>Fl::add_handler() additional data parameter</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2177'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2177'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2177'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2178'>2178</a></td>
    <td><a href='https://www.fltk.org/str.php?L2178'>Allow Fl_X::make_xid() to call user defined
    function</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2178'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2178'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2178'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2179'>2179</a></td>
    <td><a href='https://www.fltk.org/str.php?L2179'>Allow receiving events before FLTK handles
    them</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2179'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2179'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2179'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2180'>2180</a></td>
    <td><a href='https://www.fltk.org/str.php?L2180'>pkg-config support</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2180'>Config Files</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2180'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2180'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2188'>2188</a></td>
    <td><a href='https://www.fltk.org/str.php?L2188'>[PATCH] Support win32 accessibility via MSAA</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2188'>WIN32</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2188'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2188'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2242'>2242</a></td>
    <td><a href='https://www.fltk.org/str.php?L2242'>Enable usage of FLTK fonts in cairo context (patch
    included)</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2242'>Cairo</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2242'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2242'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2314'>2314</a></td>
    <td><a href='https://www.fltk.org/str.php?L2314'>Width option for the Fl_Menu_Item</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2314'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2314'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2314'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2338'>2338</a></td>
    <td><a href='https://www.fltk.org/str.php?L2338'>Propose to add a new method to Fl_Widget
    Fl_Widget::parent_root()</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2338'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2338'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2338'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2340'>2340</a></td>
    <td><a href='https://www.fltk.org/str.php?L2340'>Allow setting both a window icon and a mask pixmap in
    the X11 version.</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2340'>X11</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2340'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2340'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2402'>2402</a></td>
    <td><a href='https://www.fltk.org/str.php?L2402'>Widget Associations</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2402'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2402'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2402'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2411'>2411</a></td>
    <td><a href='https://www.fltk.org/str.php?L2411'>ICC Colour management policy</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2411'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2411'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2411'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2445'>2445</a></td>
    <td><a href='https://www.fltk.org/str.php?L2445'>Small modification to Fl_Value_Input to allow precize
    steps with left mouse button</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2445'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2445'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2445'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2446'>2446</a></td>
    <td><a href='https://www.fltk.org/str.php?L2446'>Allow easy customization for special purposes</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2446'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2446'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2446'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2453'>2453</a></td>
    <td><a href='https://www.fltk.org/str.php?L2453'>Enable cups printing on unix platforms (include a
    patch)</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2453'>X11</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2453'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2453'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2454'>2454</a></td>
    <td><a href='https://www.fltk.org/str.php?L2454'>Fl_Tree: need to fix keyboard nav of *child fltk
    widgets* added to tree</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2454'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2454'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2454'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2482'>2482</a></td>
    <td><a href='https://www.fltk.org/str.php?L2482'>glutKeyboardUpFunc, glutSpecialUpFunc,
    glutLeaveMainLoop</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2482'>GLUT Emulation</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2482'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2482'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2494'>2494</a></td>
    <td><a href='https://www.fltk.org/str.php?L2494'>Patch that adds some macros to the extra code
    lines</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2494'>FLUID</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2494'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2494'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2583'>2583</a></td>
    <td><a href='https://www.fltk.org/str.php?L2583'>transparency for fl_draw_image()</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2583'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2583'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2583'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2586'>2586</a></td>
    <td><a href='https://www.fltk.org/str.php?L2586'>Consolidate fluid settings into one dialog</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2586'>FLUID</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2586'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2586'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2609'>2609</a></td>
    <td><a href='https://www.fltk.org/str.php?L2609'>shape functions (fl_rectf etc.) support alpha</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2609'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2609'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2609'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2610'>2610</a></td>
    <td><a href='https://www.fltk.org/str.php?L2610'>Add another method for Fl_Menu_Button to allow popup
    at specific position</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2610'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2610'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2610'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2624'>2624</a></td>
    <td><a href='https://www.fltk.org/str.php?L2624'>Placement of widgets be Group relative</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2624'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2624'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2624'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2633'>2633</a></td>
    <td><a href='https://www.fltk.org/str.php?L2633'>New methods for Fl_JPEG_Image and Fl_PNG_Image to
    encode from Fl_Image</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2633'>Image Support</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2633'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2633'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2642'>2642</a></td>
    <td><a href='https://www.fltk.org/str.php?L2642'>Need examples and docs for how to build apps against
    DLL version of FLTK</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2642'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2642'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2642'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2662'>2662</a></td>
    <td><a href='https://www.fltk.org/str.php?L2662'>Docs for "Drawing Things In FLTK" should cover
    coordinate space of widgets vs. windows</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2662'>Documentation</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2662'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2662'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2675'>2675</a></td>
    <td><a href='https://www.fltk.org/str.php?L2675'>Patch for a new "oxy" theme of FLTK 1.3 (with
    gradient).</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2675'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2675'>Pending</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2675'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2692'>2692</a></td>
    <td><a href='https://www.fltk.org/str.php?L2692'>right justify option for scroll window</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2692'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2692'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2692'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2751'>2751</a></td>
    <td><a href='https://www.fltk.org/str.php?L2751'>Limit input field characters in fl_ask, fl_input and
    friends.</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2751'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2751'>Active</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2751'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2752'>2752</a></td>
    <td><a href='https://www.fltk.org/str.php?L2752'>Allow down arrow to open input-choice drop down
    menu</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2752'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2752'>Active</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2752'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2753'>2753</a></td>
    <td><a href='https://www.fltk.org/str.php?L2753'>Capture enter as click on button with focus</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2753'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2753'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2753'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2755'>2755</a></td>
    <td><a href='https://www.fltk.org/str.php?L2755'>Allow color change on Browser selection bar based on
    focus</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2755'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2755'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2755'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2756'>2756</a></td>
    <td><a href='https://www.fltk.org/str.php?L2756'>New browser checkbox widget</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2756'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2756'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2756'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2757'>2757</a></td>
    <td><a href='https://www.fltk.org/str.php?L2757'>Allows shortcuts on browser items</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2757'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2757'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2757'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2762'>2762</a></td>
    <td><a href='https://www.fltk.org/str.php?L2762'>Ability to set icon character for fl_choice</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2762'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2762'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2762'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2763'>2763</a></td>
    <td><a href='https://www.fltk.org/str.php?L2763'>Full Selection Movement when using Keyboard in
    Browser</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2763'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2763'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2763'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2766'>2766</a></td>
    <td><a href='https://www.fltk.org/str.php?L2766'>New configurable option to change symbol prefix
    character</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2766'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2766'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2766'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2767'>2767</a></td>
    <td><a href='https://www.fltk.org/str.php?L2767'>Fix scrollbar visiblity from causing miscalcuation on
    select()</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2767'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2767'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2767'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2785'>2785</a></td>
    <td><a href='https://www.fltk.org/str.php?L2785'>Evalayout with FLTK one attempt</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2785'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2785'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2785'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2792'>2792</a></td>
    <td><a href='https://www.fltk.org/str.php?L2792'>Change of logic used on browser_ when no
    selection</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2792'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2792'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2792'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2793'>2793</a></td>
    <td><a href='https://www.fltk.org/str.php?L2793'>Option to change FL_SHORTCUT logic</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2793'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2793'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2793'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2799'>2799</a></td>
    <td><a href='https://www.fltk.org/str.php?L2799'>Menus can suddenly disappear</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2799'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2799'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2799'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2822'>2822</a></td>
    <td><a href='https://www.fltk.org/str.php?L2822'>Fl_Input UTF-8 handling</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2822'>Unicode support</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2822'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2822'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2876'>2876</a></td>
    <td><a href='https://www.fltk.org/str.php?L2876'>Make xft font sorting work (patch supplied)</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2876'>X11</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2876'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2876'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2916'>2916</a></td>
    <td><a href='https://www.fltk.org/str.php?L2916'>Remove CMake or Autotools build system</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2916'>Build Files</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2916'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2916'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2951'>2951</a></td>
    <td><a href='https://www.fltk.org/str.php?L2951'>DoubleSlider for selecting low and high values within
    min/max range</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2951'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2951'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2951'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L2982'>2982</a></td>
    <td><a href='https://www.fltk.org/str.php?L2982'>Cannot build outside of source tree.</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2982'>Build Files</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2982'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L2982'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3100'>3100</a></td>
    <td><a href='https://www.fltk.org/str.php?L3100'>[patch] Allow printing to be disabled</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3100'>Build Files</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3100'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3100'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3204'>3204</a></td>
    <td><a href='https://www.fltk.org/str.php?L3204'>Fl_Shared_Image improvements</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3204'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3204'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3204'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3211'>3211</a></td>
    <td><a href='https://www.fltk.org/str.php?L3211'>Scrolling Tabs Widget</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3211'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3211'>Active</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3211'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3222'>3222</a></td>
    <td><a href='https://www.fltk.org/str.php?L3222'>Make the text box area of Fl_Value_Slider etc. user
    settable</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3222'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3222'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3222'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3224'>3224</a></td>
    <td><a href='https://www.fltk.org/str.php?L3224'>add CMake package registry option</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3224'>Build Files</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3224'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3224'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3241'>3241</a></td>
    <td><a href='https://www.fltk.org/str.php?L3241'>Suggesting int Fl_Menu_::value(item) return -1 if item
    is in a submenu</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3241'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3241'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3241'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3264'>3264</a></td>
    <td><a href='https://www.fltk.org/str.php?L3264'>The autotools build system does not build
    FLTKConfig.cmake</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3264'>Build Files</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3264'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3264'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3277'>3277</a></td>
    <td><a href='https://www.fltk.org/str.php?L3277'>Fl_Text_Display virtual method</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3277'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3277'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3277'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3288'>3288</a></td>
    <td><a href='https://www.fltk.org/str.php?L3288'>Consistent configuration macros</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3288'>Config Files</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3288'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3288'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3296'>3296</a></td>
    <td><a href='https://www.fltk.org/str.php?L3296'>Improvement of bilinear scaling of images</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3296'>Image Support</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3296'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3296'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3297'>3297</a></td>
    <td><a href='https://www.fltk.org/str.php?L3297'>New implementation of Fl_Shared_Image...</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3297'>Image Support</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3297'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3297'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3313'>3313</a></td>
    <td><a href='https://www.fltk.org/str.php?L3313'>Speedup fl_read_image() for X11</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3313'>Image Support</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3313'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3313'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3314'>3314</a></td>
    <td><a href='https://www.fltk.org/str.php?L3314'>Make some private Fl_Tabs methods protected</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3314'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3314'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3314'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3336'>3336</a></td>
    <td><a href='https://www.fltk.org/str.php?L3336'>Include some example fluid files</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3336'>Example Programs</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3336'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3336'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3339'>3339</a></td>
    <td><a href='https://www.fltk.org/str.php?L3339'>fltk-config: would be nice if one could add extra libs
    to --compile</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3339'>Config Files</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3339'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3339'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3350'>3350</a></td>
    <td><a href='https://www.fltk.org/str.php?L3350'>Some fix to handle dll multi injection and
    ejection</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3350'>DLL/DSO</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3350'>Pending</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3350'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3351'>3351</a></td>
    <td><a href='https://www.fltk.org/str.php?L3351'>optionally changing Fl_Choice's dropdown
    behavior</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3351'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3351'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3351'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3355'>3355</a></td>
    <td><a href='https://www.fltk.org/str.php?L3355'>Support generation of UTF-8 file from FLUID</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3355'>FLUID</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3355'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3355'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3360'>3360</a></td>
    <td><a href='https://www.fltk.org/str.php?L3360'>fltk manpage improvements</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3360'>Documentation</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3360'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3360'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3370'>3370</a></td>
    <td><a href='https://www.fltk.org/str.php?L3370'>use freedesktop.org XDG basedir-spec</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3370'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3370'>Active</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3370'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3371'>3371</a></td>
    <td><a href='https://www.fltk.org/str.php?L3371'>Wayland Display Server Protocol support</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3371'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3371'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3371'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3372'>3372</a></td>
    <td><a href='https://www.fltk.org/str.php?L3372'>Vulkan API support</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3372'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3372'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3372'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3379'>3379</a></td>
    <td><a href='https://www.fltk.org/str.php?L3379'>General documentation
    improvements/elaborations</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3379'>Documentation</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3379'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3379'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3380'>3380</a></td>
    <td><a href='https://www.fltk.org/str.php?L3380'>Change FLUID codegeneration behavior for "Widget Clas"
    with "relative" option "ON"</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3380'>FLUID</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3380'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3380'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3383'>3383</a></td>
    <td><a href='https://www.fltk.org/str.php?L3383'>Allow alpha image with
    Fl_Image_Surface::image()</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3383'>Image Support</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3383'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3383'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3392'>3392</a></td>
    <td><a href='https://www.fltk.org/str.php?L3392'>Fl::set_font() limited to italic and bold
    fonts</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3392'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3392'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3392'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3405'>3405</a></td>
    <td><a href='https://www.fltk.org/str.php?L3405'>Please add more comments to
    Fl_Native_File_Chooser_MAC.mm</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3405'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3405'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3405'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3418'>3418</a></td>
    <td><a href='https://www.fltk.org/str.php?L3418'>Promote current scaling factor to child
    processes</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3418'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3418'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3418'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3442'>3442</a></td>
    <td><a href='https://www.fltk.org/str.php?L3442'>fluid: ^V (paste) should paste new item below current
    selection</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3442'>FLUID</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3442'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3442'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3451'>3451</a></td>
    <td><a href='https://www.fltk.org/str.php?L3451'>Option to disable visibility on Linux</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3451'>Build Files</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3451'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3451'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3453'>3453</a></td>
    <td><a href='https://www.fltk.org/str.php?L3453'>Fl_Text_Display: Highlight current line
    (Patch)</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3453'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3453'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3453'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3460'>3460</a></td>
    <td><a href='https://www.fltk.org/str.php?L3460'>Small fluid annoyance bugs</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3460'>FLUID</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3460'>Pending</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3460'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3467'>3467</a></td>
    <td><a href='https://www.fltk.org/str.php?L3467'>create Fl_File_Icon from embedded image data</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3467'>Image Support</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3467'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3467'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3477'>3477</a></td>
    <td><a href='https://www.fltk.org/str.php?L3477'>add oxy scheme</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3477'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3477'>Pending</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3477'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3479'>3479</a></td>
    <td><a href='https://www.fltk.org/str.php?L3479'>loop bar similar to Fl_Progress</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3479'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3479'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3479'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3485'>3485</a></td>
    <td><a href='https://www.fltk.org/str.php?L3485'>Cumulative Patch for 1.4 addressing several
    STR</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3485'>Multiple</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3485'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3485'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3486'>3486</a></td>
    <td><a href='https://www.fltk.org/str.php?L3486'>system tray functionality</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3486'>OS support</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3486'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3486'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3487'>3487</a></td>
    <td><a href='https://www.fltk.org/str.php?L3487'>Added support for Ctrl-Shift-U to enter unicode chars
    to input field and enhance UTF8 support.</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3487'>Unicode support</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3487'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3487'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3495'>3495</a></td>
    <td><a href='https://www.fltk.org/str.php?L3495'>build library without dependencies on X11</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3495'>Build Files</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3495'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3495'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3501'>3501</a></td>
    <td><a href='https://www.fltk.org/str.php?L3501'>Fl_Help_View: copy text selection</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3501'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3501'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3501'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3504'>3504</a></td>
    <td><a href='https://www.fltk.org/str.php?L3504'>read Windows icon file (.ico)</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3504'>Image Support</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3504'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3504'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3505'>3505</a></td>
    <td><a href='https://www.fltk.org/str.php?L3505'>Add FLTK as package for the Hunter packaging
    system</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3505'>Build Files</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3505'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3505'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3509'>3509</a></td>
    <td><a href='https://www.fltk.org/str.php?L3509'>Modernize FLTK: replace Porsche logo with Tesla logo
    in"test/Pixmaps"</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3509'>Example Programs</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3509'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3509'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3510'>3510</a></td>
    <td><a href='https://www.fltk.org/str.php?L3510'>Fl_Native_File_Chooser_GTK not using
    dlclose()</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3510'></a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3510'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3510'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3513'>3513</a></td>
    <td><a href='https://www.fltk.org/str.php?L3513'>Supporting Haiku</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3513'></a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3513'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3513'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3520'>3520</a></td>
    <td><a href='https://www.fltk.org/str.php?L3520'>Fixing a FileChooser feature</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3520'></a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3520'>New</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3520'>RFE</a></td>
  </tr>
  <tr>
    <td align='center'><a href='https://www.fltk.org/str.php?L3521'>3521</a></td>
    <td><a href='https://www.fltk.org/str.php?L3521'>Allow shift+scroll for horizontal scrolling</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3521'>Core Library</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3521'>Pending</a></td>
    <td align='center'><a href='https://www.fltk.org/str.php?L3521'>RFE</a></td>
  </tr>
</table>

<!-- END OF BUG LIST -->

</body>
</html>