-
Notifications
You must be signed in to change notification settings - Fork 695
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
23 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,4 @@ | ||
// | ||
// Authors: | ||
// Miguel de Icaza ([email protected]) | ||
// | ||
// NOTE: FrameView is functionally identical to Window with the following exceptions. | ||
// - Is not a Toplevel | ||
// - Does not support mouse dragging | ||
// - Does not support padding (but should) | ||
// - Does not support IEnumerable | ||
// Any udpates done here should probably be done in Window as well; TODO: Merge these classes | ||
|
||
using System; | ||
using System.Linq; | ||
using System.Linq; | ||
using System.Text.Json.Serialization; | ||
using NStack; | ||
using Terminal.Gui.Graphs; | ||
|
@@ -127,8 +115,6 @@ public ContentView () : base () { } | |
/// <param name="border">The <see cref="Border"/>.</param> | ||
public FrameView (Rect frame, ustring title = null, View [] views = null, Border border = null) : base (frame) | ||
{ | ||
//var cFrame = new Rect (1, 1, Math.Max (frame.Width - 2, 0), Math.Max (frame.Height - 2, 0)); | ||
|
||
Initialize (frame, title, views, border); | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters