7 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
10
11
foreach(@_) {
$nickname = $config{MainWindow}->Label(
-text => $user." (Online)",
-background => 'white',
-font => $config{Font}
);
$nickname->bind('<Button-3>' => sub { $m->Popup(
-popover => 'cursor') });
$nickname -> place(-x=>27, -y => $singleLine);
}
1
2
3
4
5
6
7
8
9
10
11
12
my $frame=$config{MainWindow}->place(-x=>$x,-y=>$y);
foreach(@_) {
$nickname = $frame->Label(
-text => $user." (Online)",
-background => 'white',
-font => $config{Font}
);
$nickname->bind('<Button-3>' => sub { $m->Popup(
-popover => 'cursor') });
$nickname -> place(-x=>27, -y => $singleLine);
}
7 Einträge, 1 Seite |