Exemple #1
0
 void Buffer_LineRemoveEvent(object sender, TextBufferEventArgs e)
 {
     updateMaxScrollY();
     RegisterForGraphicUpdate();
     notifyPositionChanged();
     isDirty = true;
 }
Exemple #2
0
 void Buffer_LineUpadateEvent(object sender, TextBufferEventArgs e)
 {
     RegisterForGraphicUpdate();
     notifyPositionChanged();
     isDirty = true;
 }
Exemple #3
0
 void Buffer_LineAdditionEvent(object sender, TextBufferEventArgs e)
 {
     updateMaxScrollY();
     RegisterForGraphicUpdate();
     isDirty = true;
 }