diff --git a/examples/custom_window_frame/screenshot.png b/examples/custom_window_frame/screenshot.png index afca4c0b..50b5dd28 100644 Binary files a/examples/custom_window_frame/screenshot.png and b/examples/custom_window_frame/screenshot.png differ diff --git a/examples/hello_world/screenshot.png b/examples/hello_world/screenshot.png index 765339d4..09c7af2f 100644 Binary files a/examples/hello_world/screenshot.png and b/examples/hello_world/screenshot.png differ diff --git a/sh/generate_example_screenshots.sh b/sh/generate_example_screenshots.sh index fd45a644..39550a0d 100755 --- a/sh/generate_example_screenshots.sh +++ b/sh/generate_example_screenshots.sh @@ -6,6 +6,8 @@ script_path=$( cd "$(dirname "${BASH_SOURCE[0]}")" ; pwd -P ) cd "$script_path/.." cd examples -for VARIABLE in $(ls -1d */ | sed 's/\/$//'); do - EFRAME_SCREENSHOT_TO="$VARIABLE/screenshot.png" cargo run -p $VARIABLE +for EXAMPLE_NAME in $(ls -1d */ | sed 's/\/$//'); do + if [ ${EXAMPLE_NAME} != "hello_world_par" ]; then + EFRAME_SCREENSHOT_TO="$EXAMPLE_NAME/screenshot.png" cargo run -p $EXAMPLE_NAME + fi done