mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-23 14:55:40 +00:00
13 lines
243 B
C#
13 lines
243 B
C#
namespace GtkSource
|
|
{
|
|
public partial class SourceView : Gtk.TextView
|
|
{
|
|
new public GtkSource.Buffer Buffer
|
|
{
|
|
get => base.Buffer as GtkSource.Buffer;
|
|
set => base.Buffer = value;
|
|
}
|
|
}
|
|
}
|
|
|