Skip to content
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

Temporary fix for issue #210 #218

Merged
merged 1 commit into from
Mar 4, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 9 additions & 7 deletions src/cairo/context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,15 @@ impl Drop for RectangleVec {
#[repr(C)]
pub struct Context(*mut cairo_t);

impl Drop for Context {
fn drop(&mut self) {
unsafe {
ffi::cairo_destroy(self.get_ptr())
}
}
}
// Temporarily fix issue #210
// For more info, see discussion at https://github.com/jeremyletang/rgtk/issues/210
// impl Drop for Context {
// fn drop(&mut self) {
// unsafe {
// ffi::cairo_destroy(self.get_ptr())
// }
// }
// }

impl Context {
pub fn get_ptr(&self) -> *mut cairo_t {
Expand Down