Skip to content
Snippets Groups Projects
Commit fae4fc8b authored by Vitaliy Vashchenko's avatar Vitaliy Vashchenko
Browse files

#642 Code refactoring to use proper font class.

parent 515893eb
Branches feature-test-profile
Tags
No related merge requests found
......@@ -214,7 +214,7 @@ public class AboutScreen extends AbstractTablexiaScreen<Void> {
addDefaultTextToContainer(AboutAssets.PARAGRAPH_3_DETAILS_1_2);
TablexiaLabel librariesDetails = createStyledLabel(getText(AboutAssets.PARAGRAPH_3_DETAILS_2), LABEL_STYLE_18);
TablexiaLabel libClick = createStyledLabel(getText(AboutAssets.PARAGRAPH_3_DETAILS_2_2), new TablexiaLabel.TablexiaLabelStyle(ApplicationFontManager.FontType_NEW.BOLD_20, DEFAULT_LINK_COLOR));
TablexiaLabel libClick = createStyledLabel(getText(AboutAssets.PARAGRAPH_3_DETAILS_2_2), new TablexiaLabel.TablexiaLabelStyle(ApplicationFontManager.FontType.BOLD_20, DEFAULT_LINK_COLOR));
libClick.addListener(new ClickListenerWithSound() {
@Override
public void clicked(InputEvent event, float x, float y) {
......@@ -385,7 +385,7 @@ public class AboutScreen extends AbstractTablexiaScreen<Void> {
private Table createLibrariesParagraph() {
Table licencesTable = new Table();
TablexiaLabel.TablexiaLabelStyle libraryNameStyle = BOLD_LABEL_STYLE_20;
TablexiaLabel.TablexiaLabelStyle libraryURLStyle = new TablexiaLabel.TablexiaLabelStyle(ApplicationFontManager.FontType_NEW.REGULAR_18, DEFAULT_LINK_COLOR);
TablexiaLabel.TablexiaLabelStyle libraryURLStyle = new TablexiaLabel.TablexiaLabelStyle(ApplicationFontManager.FontType.REGULAR_18, DEFAULT_LINK_COLOR);
TablexiaLabel.TablexiaLabelStyle libraryLicenceTypeStyle = BOLD_LABEL_STYLE_20;
licencesTable.setWidth(DIALOG_WIDTH);
licencesTable.pad(DIALOG_CONTENT_PADDING);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment