v1.05 Avoiding unneeded resizes
This commit is contained in:
parent
dbc8259920
commit
85e998b9a4
@ -113,7 +113,7 @@ sub _new_challenge_generic_code( $self, $show, $guess, $can_be_typed = 0 ) {
|
|||||||
my $box_kana = Gtk::Box->new( 'vertical', 10 );
|
my $box_kana = Gtk::Box->new( 'vertical', 10 );
|
||||||
$box_kana->append( $self->_new_exercise_number_label );
|
$box_kana->append( $self->_new_exercise_number_label );
|
||||||
$box_kana->append($kana_label);
|
$box_kana->append($kana_label);
|
||||||
$grid->attach( $box_kana, 0, 0, 12, 1 );
|
$grid->attach( $box_kana, 0, 0, 12, 4 );
|
||||||
$self->_app->window_set_child($grid);
|
$self->_app->window_set_child($grid);
|
||||||
my $back_button = $self->lesson->create_exit_lesson_back_button(
|
my $back_button = $self->lesson->create_exit_lesson_back_button(
|
||||||
sub {
|
sub {
|
||||||
@ -229,7 +229,7 @@ sub _new_typing_romanji_challenge( $self, $char ) {
|
|||||||
my $box_kana = Gtk::Box->new( 'vertical', 10 );
|
my $box_kana = Gtk::Box->new( 'vertical', 10 );
|
||||||
$box_kana->append( $self->_new_exercise_number_label );
|
$box_kana->append( $self->_new_exercise_number_label );
|
||||||
$box_kana->append($kana_label);
|
$box_kana->append($kana_label);
|
||||||
$grid->attach( $box_kana, 0, 0, 12, 1 );
|
$grid->attach( $box_kana, 0, 0, 12, 4 );
|
||||||
$self->_app->window_set_child($grid);
|
$self->_app->window_set_child($grid);
|
||||||
my $back_button = $self->lesson->create_exit_lesson_back_button(
|
my $back_button = $self->lesson->create_exit_lesson_back_button(
|
||||||
sub {
|
sub {
|
||||||
@ -281,7 +281,7 @@ sub _new_typing_romanji_challenge( $self, $char ) {
|
|||||||
|
|
||||||
$romanji_entry->set_valign('center');
|
$romanji_entry->set_valign('center');
|
||||||
$romanji_entry->set_halign('center');
|
$romanji_entry->set_halign('center');
|
||||||
$grid->attach( $romanji_entry, 2, 1, 8, 1 );
|
$grid->attach( $romanji_entry, 2, 2, 8, 1 );
|
||||||
|
|
||||||
$grid->attach( $continue_button, 6, 3, 5, 1 );
|
$grid->attach( $continue_button, 6, 3, 5, 1 );
|
||||||
}
|
}
|
||||||
|
@ -32,6 +32,11 @@
|
|||||||
|
|
||||||
<developer_name>sergiotarxz</developer_name>
|
<developer_name>sergiotarxz</developer_name>
|
||||||
<releases>
|
<releases>
|
||||||
|
<release version="v1.05" date="2024-12-13">
|
||||||
|
<description>
|
||||||
|
<p>Avoiding window resize on hiragana and katakana exercises.</p>
|
||||||
|
</description>
|
||||||
|
</release>
|
||||||
<release version="v1.04" date="2024-12-02">
|
<release version="v1.04" date="2024-12-02">
|
||||||
<description>
|
<description>
|
||||||
<p>Fixing bug unable to select specific level and decreasing number of simultaneus kanji to learn.</p>
|
<p>Fixing bug unable to select specific level and decreasing number of simultaneus kanji to learn.</p>
|
||||||
|
Loading…
Reference in New Issue
Block a user