-
-
Notifications
You must be signed in to change notification settings - Fork 217
Remove deprecated Gtk features from main gPodder window #1188
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
Conversation
118d8d3 to
625669e
Compare
|
Rebased to current master. |
|
Why did you drop Gtk translations for the previous PRs but then declare Dgtk_ for the ones here? |
|
TBH, I can't remember for sure, but at least for the strings in ui-files the translation domains can't be mixed. Should I replace the GTK translated strings by gpodder strings (i.e. remove Dgtk)? |
|
It would be best to use the Gtk translations because many languages might not get updated. But mixing gpodder and Gtk translations might cause inconsistencies if gpodder's translation doesn't match Gtk's. So maybe drop Dgtk_. |
* Replace stock-ids with standard icon names * Remove deprecated rules-hint from treeAvailable * Set can-focus to True in search entries * Remove use-underline from buttons
Resize: * hbox_search_episodes * hboxContainer * hboxUpdateFeeds * vbox_episode_list * vbox42 * vboxChannelNavigator * vMain * hboxDownloadSettings * hboxDownloadLimit * hboxDownloadRate
The '_builder_expose' argument to GtkBuilderWidget.__init__() allowed binding of names in the ui-file to objects defined outside of the ui-file. Glade does not allow setting properties to values which are not defined in the ui-file, so we set GTK/Gobject properties explicitly. This is made with a new kwarg '_gtk_properties' in GtkBuilderWidget.__init__() which is a dict with a (object_id, property_name) key.
625669e to
222dba3
Compare
|
Ok, Dgtk is now gone. |
|
LGTM and works on my system. A few new strings to translate to French... |
elelay
left a comment
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.
ok
|
Thanks, and sorry for the long delay. |
The remaining changes from #1129.