Skip to content

Commit

Permalink
feat(import/export tool): new graphics
Browse files Browse the repository at this point in the history
Finally, remove the old 'The Learning Edge' graphics which should not be
 anywhere in the opensource build.
  • Loading branch information
edalex-ian committed Feb 2, 2022
1 parent e159825 commit a92817e
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion import-export-tool/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ apply plugin: 'com.liferay.wsdl.builder'
allprojects {
apply plugin: 'java'
sourceCompatibility = 1.8
version = '1.0.0'
version = '1.1.0'
repositories {
mavenCentral()
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import java.awt.Dimension;
import javax.swing.JPanel;

/** @author nread */
public class Footer extends JPanel {
protected JImage footer;
protected JImage working;
Expand All @@ -16,8 +15,11 @@ public Footer() {
footer = Icons.getFooter();
working = Icons.getWorking();

footer.setBounds(0, 0, 350, 21);
working.setBounds(10, 7, 43, 8);
final int footerWidth = 350;
final int workingWidth = 43;
footer.setBounds(0, 0, footerWidth, 21);
// Offset working icon from right-hand side of footer - then add a bit of padding
working.setBounds(footerWidth - workingWidth - 8, 9, 43, 8);

setWorking(false);
}
Expand Down
Binary file modified import-export-tool/src/main/resources/icons/exportheader.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified import-export-tool/src/main/resources/icons/footer.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified import-export-tool/src/main/resources/icons/importheader.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified import-export-tool/src/main/resources/icons/working.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit a92817e

Please sign in to comment.