-
Notifications
You must be signed in to change notification settings - Fork 272
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
Macro plugin compatibility for both gtk2 and gtk3 [Needs Testing] #352
Conversation
@@ -1387,21 +1386,26 @@ static void EditSearchOptions(GtkTreeModel *model,GtkTreeIter *iter) | |||
/* create dialog box */ | |||
dialog=gtk_dialog_new_with_buttons(_("Search Options:"), | |||
GTK_WINDOW(geany->main_widgets->window), | |||
GTK_DIALOG_DESTROY_WITH_PARENT,NULL); | |||
GTK_DIALOG_DESTROY_WITH_PARENT, | |||
_("Ok"), |
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.
Mnemonic should not be removed (unless actually wanted)
Indentation has some problems, and some code should be dropped rather than commented out. Also, did you check how the widgets expand? |
@b4n I guess I did unnecessary changes regarding |
Hum, according to GitHub there are no changes. And apparently the version in master already supports GTK3 just fine, because of #410 |
This has already been implemented by #410 |
This is based on a patch. It builds on gtk3 as well as gtk2 but not thoroughly tested.