Files
@ r28810:dd35d3d734ac
Branch filter:
Location: cpp/openttd-patchpack/source/.github/workflows/unused-strings.yml - annotation
r28810:dd35d3d734ac
420 B
text/x-yaml
Fix d3c673e: Don't defer OnResize() after ReInit() (#12174)
Some windows resize themselves during painting and issue ReInit(). In this case deferred OnResize() causes a visible glitch as the event is handled on the next redraw.
Some windows resize themselves during painting and issue ReInit(). In this case deferred OnResize() causes a visible glitch as the event is handled on the next redraw.
r25943:47f48465656f r25943:47f48465656f r25943:47f48465656f r25943:47f48465656f r25943:47f48465656f r26925:5ef943cec524 r26925:5ef943cec524 r26925:5ef943cec524 r26925:5ef943cec524 r25943:47f48465656f r25943:47f48465656f r25943:47f48465656f r25943:47f48465656f r25943:47f48465656f r25943:47f48465656f r25943:47f48465656f r28566:ec28e66fe6ee r25943:47f48465656f r25943:47f48465656f r25943:47f48465656f r25943:47f48465656f r25943:47f48465656f | name: Unused strings
on:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
jobs:
unused-strings:
name: Unused strings
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Check for unused strings
run: |
set -ex
python3 .github/unused-strings.py
|