~aleteoryx/muditaos

77e1d133b8fa37339ac0c5c11fcbe0788b83ca1b — Tigran Soghbatyan 4 years ago 261be4a
[BH-999] Fix pause window layout

Increase "pause" text size accodding to the design
Move "pause" text closer to display center
M products/BellHybrid/apps/application-bell-background-sounds/windows/BGSoundsPausedWindow.cpp => products/BellHybrid/apps/application-bell-background-sounds/windows/BGSoundsPausedWindow.cpp +2 -1
@@ 30,8 30,9 @@ namespace gui
        new gui::Image(body, "big_pause_W_G");

        auto text = new gui::Text(body, 0, 0, body->getWidth(), bgSoundsStyle::pause::textH);
        text->setFont(bgSoundsStyle::descriptionFont);
        text->setText(utils::translate("common_paused"));
        text->setAlignment(Alignment(Alignment::Horizontal::Center, Alignment::Vertical::Center));
        text->setAlignment(Alignment(Alignment::Horizontal::Center, Alignment::Vertical::Top));
        text->setVisible(true);
    }