Skip to content

Commit

Permalink
Add missing hidpi assets related to #112
Browse files Browse the repository at this point in the history
  • Loading branch information
EliverLara committed Mar 15, 2021
1 parent 448c260 commit 499b187
Show file tree
Hide file tree
Showing 43 changed files with 4 additions and 4 deletions.
Binary file modified assets/checkbox-checked-active@2.png
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 assets/checkbox-checked-backdrop@2.png
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 assets/checkbox-checked-hover@2.png
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 assets/checkbox-checked-insensitive-backdrop@2.png
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 assets/checkbox-checked-insensitive@2.png
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 assets/checkbox-checked@2.png
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 assets/checkbox-mixed-active@2.png
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 assets/checkbox-mixed-backdrop@2.png
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 assets/checkbox-mixed-hover@2.png
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 assets/checkbox-mixed-insensitive-backdrop@2.png
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 assets/checkbox-mixed-insensitive@2.png
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 assets/checkbox-mixed@2.png
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 assets/checkbox-unchecked-active@2.png
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 assets/checkbox-unchecked-backdrop@2.png
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 assets/checkbox-unchecked-hover@2.png
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 assets/checkbox-unchecked-insensitive-backdrop@2.png
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 assets/checkbox-unchecked-insensitive@2.png
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 assets/checkbox-unchecked@2.png
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 assets/radio-checked-active@2.png
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 assets/radio-checked-backdrop@2.png
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 assets/radio-checked-hover@2.png
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 assets/radio-checked-insensitive-backdrop@2.png
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 assets/radio-checked-insensitive@2.png
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 assets/radio-checked@2.png
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 assets/radio-mixed-active@2.png
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 assets/radio-mixed-backdrop@2.png
Binary file modified assets/radio-mixed-hover@2.png
Binary file modified assets/radio-mixed-insensitive-backdrop@2.png
Binary file modified assets/radio-mixed-insensitive@2.png
Binary file modified assets/radio-mixed@2.png
Binary file modified assets/radio-unchecked-active@2.png
Binary file modified assets/radio-unchecked-backdrop@2.png
Binary file modified assets/radio-unchecked-hover@2.png
Binary file modified assets/radio-unchecked-insensitive-backdrop@2.png
Binary file modified assets/radio-unchecked-insensitive@2.png
Binary file modified assets/radio-unchecked@2.png
Binary file modified assets/selected-checkbox-checked@2.png
Binary file modified assets/selected-checkbox-mixed@2.png
Binary file modified assets/selected-checkbox-unchecked@2.png
Binary file modified assets/selected-radio-checked@2.png
Binary file modified assets/selected-radio-mixed@2.png
Binary file modified assets/selected-radio-unchecked@2.png
8 changes: 4 additions & 4 deletions src/render-gtk3-assets-hidpi.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ def wait_for_prompt(process, command=None):
return

output += process.stdout.read(1)
while output != b'\n>':
output += process.stdout.read(1)
output = output[1:]
# while output != b'\n>':
# output += process.stdout.read(1)
# output = output[1:]


def start_inkscape():
Expand All @@ -49,7 +49,7 @@ def inkscape_render_rect(icon_file, rect, output_file):
if inkscape_process is None:
inkscape_process = start_inkscape()
wait_for_prompt(inkscape_process,
'--export-dpi=180 %s -i %s -e %s'
'export-dpi:180; file-open:%s; export-id:%s; export-filename:%s; export-do'
% (icon_file, rect, output_file)
)
optimize_png(output_file)
Expand Down

0 comments on commit 499b187

Please sign in to comment.