We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e90cc5 commit 302f8baCopy full SHA for 302f8ba
app/src/processing/app/Base.java
@@ -1886,8 +1886,16 @@ static public String[] headerListFromIncludePath(File path) throws IOException {
1886
*/
1887
@SuppressWarnings("serial")
1888
public void handleAbout() {
1889
- final Image image = Theme.getLibImage("about", activeEditor,
1890
- Theme.scale(475), Theme.scale(300));
+ Image image;
+ File f = UpdateCheck.getUpdatedSplashImageFile();
1891
+ if (f != null) {
1892
+ Toolkit tk = Toolkit.getDefaultToolkit();
1893
+ Image unscaled = tk.getImage(f.getAbsolutePath());
1894
+ image = Theme.scale(unscaled, activeEditor);
1895
+ } else {
1896
+ image = Theme.getLibImage("about", activeEditor, //
1897
+ Theme.scale(475), Theme.scale(300));
1898
+ }
1899
final Window window = new Window(activeEditor) {
1900
public void paint(Graphics graphics) {
1901
Graphics2D g = Theme.setupGraphics2D(graphics);
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
0 commit comments