Changeset 4812


Ignore:
Timestamp:
Feb 1, 2010, 12:18:04 PM (14 years ago)
Author:
ronosman
Message:

Change font and colour for Piwigo upload button.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/pLoader/trunk/res/photo_properties_with_categories_tags_wdr.pl

    r4804 r4812  
    1 use Wx;
     1use Wx qw/wxFONTFAMILY_SWISS wxFONTSTYLE_NORMAL wxFONTWEIGHT_NORMAL wxFONTWEIGHT_BOLD  wxGREEN /;
    22use Wx::Calendar;
    33use Wx::DateTime;
     
    4747
    4848    my( $item5 ) = Wx::Button->new( $parent, $main::PHOTO_PROPERTIES_UPLOAD, "", wxDefaultPosition, [-1,40], 0 );
     49    my $btfont = Wx::Font->new(16, wxFONTFAMILY_SWISS, wxFONTSTYLE_NORMAL, wxFONTWEIGHT_BOLD );
     50    $item5->SetFont($btfont);
     51#    $item5->SetForegroundColour( Wx::wxGREEN );
     52    $item5->SetForegroundColour( Wx::Colour->new(250, 52, 52) );
    4953    $topsizer->AddWindow( $item5, 0, wxGROW|wxALIGN_CENTER_VERTICAL|wxALL, 5 );
    5054
Note: See TracChangeset for help on using the changeset viewer.