|
From: Detlef R. <det...@gm...> - 2015-10-09 03:33:16
|
Hi,
On 22.09.2015 08:55, Kouhei Sutou wrote:
> If your program that uses Ruby/GTK3 doesn't work with 3.x,
> please report to us. It must be a Ruby/GTK3 bug. We'll fix
> the bug.
>
Clipboard functionality is not fully supported.
require 'gtk3'
window = Gtk::Window.new
cb = window.get_clipboard Gdk::Selection::CLIPBOARD
if cb
cb.request_text do |clip, data|
p 'crash'
end
end
cheers, detlef
|