Changeset 5114
- Timestamp:
- Mar 11, 2010, 11:48:45 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/pLoader/trunk/src/Uploader/GUI/Frame.pm
r5104 r5114 285 285 $self->imageviewer_refresh(0); 286 286 } 287 287 # have to support batch mode 288 288 if($self->imageviewer_item_refresh){ 289 $self->imageviewer->ItemRefresh( 290 $self->current_imageviewer_index 291 ); 289 map { 290 $self->imageviewer->ItemRefresh( 291 $_ 292 ) 293 } @{$self->imageviewer->GetSelectedItems}; 292 294 $self->imageviewer_item_refresh(0); 293 295 } … … 1914 1916 my( $self ) = @_; 1915 1917 1916 my $tb = Wx::ToolBar->new( $self, -1, wxDefaultPosition, [600, -1], wxTB_FLAT );1918 my $tb = Wx::ToolBar->new( $self, -1, wxDefaultPosition, [600, -1], wxTB_FLAT|wxTB_TEXT ); 1917 1919 $tb->SetToolBitmapSize( wxSIZE( 32, 32 ) ); 1918 1920 map { … … 1952 1954 gettext("Remove photo from selection. Files are not deleted ") 1953 1955 ], 1954 [1955 103,1956 gettext("Upload to Piwigo"),1957 wxTheApp->resource_path('tb_upload.png'),1958 wxBITMAP_TYPE_PNG,1959 wxTheApp->use_offline ? 0 : 1,1960 wxTheApp->resource_path('tb_upload.png'),1961 gettext("Upload photos to Piwigo.")1962 ],1956 # [ 1957 # 103, 1958 # gettext("Upload to Piwigo"), 1959 # wxTheApp->resource_path('tb_upload.png'), 1960 # wxBITMAP_TYPE_PNG, 1961 # wxTheApp->use_offline ? 0 : 1, 1962 # wxTheApp->resource_path('tb_upload.png'), 1963 # gettext("Upload photos to Piwigo.") 1964 # ], 1963 1965 [ 1964 1966 104,
Note: See TracChangeset
for help on using the changeset viewer.