-
-
Notifications
You must be signed in to change notification settings - Fork 48
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
MessageListItem: Parse message_info.from into a linkbutton #362
base: master
Are you sure you want to change the base?
Conversation
I would prefer a single Gtk.Grid subclass for the field that holds the buttons and the entry: |
@@ -462,4 +460,41 @@ public class Mail.MessageListItem : Gtk.ListBoxRow { | |||
public string get_message_body_html () { | |||
return web_view.get_body_html (); | |||
} | |||
|
|||
private class IndividualItem : Gtk.Button { |
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.
Why not subclass Gtk.LinkButton directly ?
Ah hey I was looking for something like that, but couldn't find it. I'll update accordingly |
@tintou hm so I'm doing:
and getting a segfault in malloc. Any ideas? |
Replaces the dumb label with a link style button that opens a mailto link, just like Mail 1.x did