1
0
mirror of https://github.com/arduino/Arduino.git synced 2024-12-01 12:24:14 +01:00

Import library menu is now scrollable.

Fixes #1543
This commit is contained in:
Cristian Maglie 2013-08-21 02:19:57 +02:00
parent 00210189fe
commit 2e80136cab
2 changed files with 2 additions and 0 deletions

View File

@ -646,6 +646,7 @@ public class Editor extends JFrame implements RunnerListener {
if (importMenu == null) {
importMenu = new JMenu(_("Import Library..."));
MenuScroller.setScrollerFor(importMenu);
base.rebuildImportMenu(importMenu, this);
}
sketchMenu.add(importMenu);

View File

@ -9,6 +9,7 @@ ARDUINO 1.5.3 BETA
* Display estimated RAM usage after compile (Loren M. Lang)
* Updated arm gcc to 4.7.4 and simplified build.xml
* ARM gcc doesn't require ia32-libs anymore on 64 bits linux systems
* Import library menu is now scrollable
[arduino core]
* sam: Fixed delayMicrosecond() when interrupts are disabled