Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix indentation style of formatter #302

Open
lw64 opened this issue Jan 1, 2024 · 0 comments
Open

Fix indentation style of formatter #302

lw64 opened this issue Jan 1, 2024 · 0 comments
Labels

Comments

@lw64
Copy link
Contributor

lw64 commented Jan 1, 2024

Currently:

var animation_timed = new Adw.TimedAnimation (
                                              progress_bar, // Widget
                                              0, 1, // Initial value, final value
                                              1500, // Duration (in milliseconds)
                                              target_timed // Animation target
    ) {
    easing = EASE_IN_OUT_CUBIC
};

But it should rather be:

var animation_timed = new Adw.TimedAnimation (
    progress_bar, // Widget
    0, 1, // Initial value, final value
    1500, // Duration (in milliseconds)
    target_timed // Animation target
) {
    easing = EASE_IN_OUT_CUBIC
};
@lw64 lw64 changed the title Fix indentation style Fix indentation style of formatter Jan 1, 2024
@Prince781 Prince781 added the bug label Mar 30, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants