-
Notifications
You must be signed in to change notification settings - Fork 12
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
More GtkBuilder and other stuff #168
Conversation
Hi @skybon, thanks a lot it's awesome. is this warning introduced with this commit? gcc:
clang:
|
@illwieckz Fixed |
So, I like the code, but just for the future, please do not lost your precious time to rewrite part only to unfollow guidelines 😛 But if you want to rewrite lines that are multilines without no other reason than the old 80 char columns (as you did), you can, breaking lines is an editor rendering task, and diffs are easier to understand when there is no useless line breaks. 😄 |
In fact, previously, the code was just a mess with per-file-implicit-coding-guidelines and sometime it was so weird (like “use space indentation if this not a multiple of 8, use tab if it's a multiple of 8”). So some files used space before function parenthesis, others files not. I unified many things but I did not spent time to unify that. |
@@ -180,8 +179,8 @@ static int server_clist_refresh_row (struct server *s, int row) { | |||
else | |||
g_snprintf (buf4, 32, "%d/%d", players, s->maxplayers); | |||
|
|||
// set text only if no players are on the server. Otherwise an icon is added | |||
// later together with this text | |||
// set text only if no players are on the server. Otherwise an icon is added later together with this text |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just to say: I'm not against this kind of cleaning, thanks ;-)
👍 |
port menu to gtkbuilder, move “Preferences” in “Edit” menu, improve GTK+3 stuff etc. ref #14
This is a massive pull request that represents significant GUI overhaul.
As usual, this is an atomic commit: should not break anything, took some time to weed out bugs. Additional testing is welcome though.