View Single Post
daperl's Avatar
Posts: 2,427 | Thanked: 2,986 times | Joined on Dec 2007
#140
@rm_you: You can get rid of all that frame stuff in your code. It looks like you almost had it the first time but you got the hint wrong. After the line:

Code:
window = hildon_desktop_popup_window_new(0, GTK_ORIENTATION_VERTICAL, HD_POPUP_WINDOW_DIRECTION_RIGHT_BOTTOM);
add these 2 lines:

Code:
gtk_window_set_type_hint(window, GDK_WINDOW_TYPE_HINT_NOTIFICATION);
gtk_window_set_decorated(window, TRUE);
 

The Following 4 Users Say Thank You to daperl For This Useful Post: