Changeset 4422 for extensions/pLoader/trunk/src/Uploader/GUI/wxApp.pm
- Timestamp:
- Dec 4, 2009, 10:30:31 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/pLoader/trunk/src/Uploader/GUI/wxApp.pm
r4408 r4422 109 109 default_photo_names 110 110 eng_default_photo_names 111 upload_hd 112 eng_upload_hd 111 113 / 112 114 ); … … 130 132 # to check if we can use stored cache 131 133 $self->imagelist_version( 132 ' 8'134 '9' 133 135 ); 134 136 … … 269 271 } 270 272 ); 271 273 274 $self->upload_hd( 275 [ 276 'No', 277 'Yes, use HD resized of the original photo', 278 'Yes, use a copy of the original photo', 279 ] 280 ); 281 282 $self->eng_upload_hd( 283 { 284 map { gettext($_) => $_ } @{$self->upload_hd} 285 } 286 ); 287 272 288 $self->default_photo_names( 273 289 [ … … 460 476 my $params = { 461 477 new_files => [], 478 hd_filter => 'Lanczos', 479 hd_blur => 0.9, 480 hd_quality => 95, 481 hd_w => 1600, 482 hd_h => 1200, 483 hd_interlace => 'Line', 462 484 thumb_size => 120, 463 485 site_thumb_dir => $self->thumb_dir, … … 474 496 th_quality => 90, 475 497 auto_rotate => 1, 498 upload_hd => 'No', 476 499 remove_uploaded_from_selection => 1, 477 500 interlace => 'Line',
Note: See TracChangeset
for help on using the changeset viewer.