Skip to content

Commit

Permalink
version 4.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
viliusle committed Apr 11, 2021
1 parent 0e5bc12 commit cdc51cb
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 15 deletions.
22 changes: 11 additions & 11 deletions dist/bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/bundle.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "miniPaint",
"version": "4.6.1",
"version": "4.7.0",
"author": "Vilius L.",
"description": "Online graphics editing tool lets create, edit images using HTML5 technologies.",
"keywords": [
Expand Down
8 changes: 6 additions & 2 deletions src/js/modules/file/save.js
Original file line number Diff line number Diff line change
Expand Up @@ -277,11 +277,15 @@ class File_save_class {
document.getElementById('pop_data_name').disabled = false;

if (user_response.layers == 'Separated (original types)') {
document.getElementById('popup-group-type').style.opacity = "0.5";
if(document.getElementById('popup-group-type')) {
document.getElementById('popup-group-type').style.opacity = "0.5";
}
document.getElementById('popup-tr-quality').style.display = '';
}
else {
document.getElementById('popup-group-type').style.opacity = "1";
if(document.getElementById('popup-group-type')) {
document.getElementById('popup-group-type').style.opacity = "1";
}
}

if(calculate_file_size == false){
Expand Down

0 comments on commit cdc51cb

Please sign in to comment.