Skip to content

Commit 5637130

Browse files
committed
Converted toolbar icons to png
1 parent 08d3510 commit 5637130

26 files changed

+4
-4
lines changed

app/src/cc/arduino/view/preferences/Preferences.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ public void actionPerformed(java.awt.event.ActionEvent evt) {
196196

197197
additionalBoardsManagerField.setToolTipText(tr("Enter a comma separated list of urls"));
198198

199-
extendedAdditionalUrlFieldWindow.setIcon(new ImageIcon(Base.getThemeImage("newwindow.gif", this)));
199+
extendedAdditionalUrlFieldWindow.setIcon(new ImageIcon(Base.getThemeImage("newwindow.png", this)));
200200
extendedAdditionalUrlFieldWindow.setMargin(new java.awt.Insets(1, 1, 1, 1));
201201
extendedAdditionalUrlFieldWindow.addActionListener(new java.awt.event.ActionListener() {
202202
public void actionPerformed(java.awt.event.ActionEvent evt) {

app/src/processing/app/EditorHeader.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ public EditorHeader(Editor eddie) {
149149
pieces = new Image[STATUS.length][WHERE.length];
150150
for (int i = 0; i < STATUS.length; i++) {
151151
for (int j = 0; j < WHERE.length; j++) {
152-
String path = "tab-" + STATUS[i] + "-" + WHERE[j] + ".gif";
152+
String path = "tab-" + STATUS[i] + "-" + WHERE[j] + ".png";
153153
pieces[i][j] = Base.getThemeImage(path, this);
154154
}
155155
}

app/src/processing/app/EditorLineStatus.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public EditorLineStatus() {
5858
high = Theme.getInteger("linestatus.height") * Theme.getInteger("gui.scalePercent") / 100;
5959

6060
if (OSUtils.isMacOS()) {
61-
resize = Base.getThemeImage("resize.gif", this);
61+
resize = Base.getThemeImage("resize.png", this);
6262
}
6363
//linestatus.bgcolor = #000000
6464
//linestatus.font = SansSerif,plain,10

app/src/processing/app/EditorToolbar.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ public EditorToolbar(Editor editor, JMenu menu) {
139139
}
140140

141141
private void loadButtons() {
142-
Image allButtons = Base.getThemeImage("buttons.gif", this);
142+
Image allButtons = Base.getThemeImage("buttons.png", this);
143143
buttonImages = new Image[BUTTON_COUNT][3];
144144

145145
for (int i = 0; i < BUTTON_COUNT; i++) {

build/shared/lib/theme/buttons.gif

-3.25 KB
Binary file not shown.

build/shared/lib/theme/buttons.png

2.09 KB
Loading

build/shared/lib/theme/newwindow.gif

-91 Bytes
Binary file not shown.

build/shared/lib/theme/newwindow.png

335 Bytes
Loading

build/shared/lib/theme/resize.gif

-73 Bytes
Binary file not shown.

build/shared/lib/theme/resize.png

308 Bytes
Loading
-73 Bytes
Binary file not shown.
291 Bytes
Loading
-114 Bytes
Binary file not shown.
333 Bytes
Loading
-54 Bytes
Binary file not shown.
279 Bytes
Loading
-87 Bytes
Binary file not shown.
301 Bytes
Loading
-73 Bytes
Binary file not shown.
291 Bytes
Loading
-114 Bytes
Binary file not shown.
333 Bytes
Loading
-54 Bytes
Binary file not shown.
279 Bytes
Loading
-73 Bytes
Binary file not shown.
292 Bytes
Loading

0 commit comments

Comments
 (0)