Check the [Tutorials](https://github.com/jpbruyere/Crow/wiki/Tutorials) for a quick introduction.
-The `ShowCase`sample will allow you to quickly test IML with live result.
+The `ShowCase` sample will allow you to quickly test IML with live result.
<p align="center">
- <a href="https://github.com/jpbruyere/Crow/blob/master/Images/showCase.png">
- <kbd><img src="https://github.com/jpbruyere/Crow/blob/master/Images/showCase.png" height="200"></kbd>
+ <a href="https://github.com/jpbruyere/Crow/blob/master/Images/showCase2.png">
+ <kbd><img src="https://github.com/jpbruyere/Crow/blob/master/Images/showCase2.png" height="200"></kbd>
</a>
</p>
--- /dev/null
+The `ShowCase`sample will allow you to quickly test IML with live result.
+
+<p align="center">
+ <a href="https://github.com/jpbruyere/Crow/blob/master/Images/showCase2.png">
+ <kbd><img src="https://github.com/jpbruyere/Crow/blob/master/Images/showCase2.png" height="200"></kbd>
+ </a>
+</p>
+
+Please report bugs and issues on [GitHub](https://github.com/jpbruyere/Crow/issues)
+
<?xml version="1.0"?>
<HorizontalStack Background="DarkGrey" >
<VerticalStack Width="25%">
- <HorizontalStack Height="Fit" Margin="2" Background="Onyx">
- <Image Margin="2" Width="16" Height="16" Path="#Crow.Icons.level-up.svg" MouseClick="./goUpDirClick"
- Background="Jet" MouseEnter="{Background=Grey}" MouseLeave="{Background=Jet}" />
- <TextBox Text="{²CurrentDir}" Margin="2"/>
+ <HorizontalStack Height="Fit" Margin="3" Background="Onyx" Spacing="2">
+ <TextBox Text="{²CurrentDir}" Margin="2" ClipToClientRect="true"/>
+ <Image Margin="2" Width="20" Height="20" Path="#Crow.Icons.level-up.svg" MouseClick="./goUpDirClick" Focusable="true"
+ Background="Grey" MouseEnter="{Background=SeaGreen}" MouseLeave="{Background=Grey}" Tooltip="go the the parent directory" />
</HorizontalStack>
<DirectoryView Margin="1" Name="dv" CurrentDirectory="{CurrentDir}" SelectedItemChanged="Dv_SelectedItemChanged">
<Template>
disableSuggestions = true;
- if (IFace.Shift) {
+ if (e.Modifiers.HasFlag(Modifier.Shift)) {
for (int l = lineStart; l <= lineEnd; l++) {
if (Text[lines[l].Start] == '\t')
update (new TextChange (lines[l].Start, 1, ""));
protected void textView_KeyDown (object sender, Crow.KeyEventArgs e) {
if (Ctrl) {
if (e.Key == Glfw.Key.W) {
- if (Shift)
+ if (e.Modifiers.HasFlag(Modifier.Shift))
CMDRedo.Execute ();
else
CMDUndo.Execute ();