~invidian/shutter/perl-5.30

« back to all changes in this revision

Viewing changes to share/shutter/resources/modules/Shutter/Upload/Shared.pm

  • Committer: Adam Stokes
  • Date: 2017-08-10 15:38:04 UTC
  • mfrom: (1278.2.1 shutter)
  • Revision ID: adam.stokes@ubuntu.com-20170810153804-hmm644dv9suayl9t
MergeĀ ondrejĀ changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
67
67
        my $sg = Gtk2::SizeGroup->new('horizontal');
68
68
 
69
69
        #create entry for each link
70
 
        foreach (keys %{$self->{_links}}){
 
70
        foreach (sort keys %{$self->{_links}}){
71
71
                next if $_ eq 'status';
72
72
                my $box = $self->create_entry_for_notebook($_, $self->{_links}->{$_}, $sg);
73
73
                $upload_vbox->pack_start($box, FALSE, FALSE, 3);