Skip to content

Commit

Permalink
Quick start next buttons (#114)
Browse files Browse the repository at this point in the history
* Changed OK to Next on quick start buttons.

Closes #110.

* Disabled virtualization on the pages tree view in the configuration window.

The size of the tree nodes was changing after the window was fully loaded.
  • Loading branch information
pvginkel authored Nov 28, 2023
1 parent e1d9577 commit 783bbab
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 12 deletions.
1 change: 1 addition & 0 deletions Tql.App/ConfigurationUI/ConfigurationWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
x:Name="_pages"
Margin="3"
ap:TreeViewHelper.ShowLines="false"
VirtualizingStackPanel.IsVirtualizing="false"
SelectedItemChanged="_pages_SelectedItemChanged" />
<ScrollViewer
x:Name="_container"
Expand Down
8 changes: 0 additions & 8 deletions Tql.App/QuickStart/Playbook.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ text, e.g. ::Enter:: for the enter key.
When you need to use the mouse, I'll put a ![](Cursor.svg?color=true) or
![](Cursor+Click.svg?color=true) icon in front of the instructions.

![](Cursor+Click.svg?color=true) Click **OK** to go to the next step.

---
id: welcome-scope
title: What we'll be doing
Expand All @@ -24,8 +22,6 @@ title: What we'll be doing
The app has support for different tools. I'll walk you through the setup of the
one you want to use. After that we'll explore the functionality of the app.

![](Cursor+Click.svg?color=true) Click **OK** to go to the next step.

---
id: welcome-open-app
title: Opening the app
Expand All @@ -39,8 +35,6 @@ lower right corner of your screen, next to the clock and the WiFi symbol. You'll
have to click small arrow (^) to reveal it. When you do, we'll continue where we
left of.

![](Cursor+Click.svg?color=true) Click **OK** to go to the next step.

---
id: select-tool
title: What tool do you want to setup?
Expand Down Expand Up @@ -209,8 +203,6 @@ Well done! With the configuration completed, we can start using the plugin.
The app works best if you use the keyboard. We'll practice this in the remainder
of the tutorial.

![](Cursor+Click.svg?color=true) Click **OK** to continue.

---
id: list-all-categories
title: List all categories
Expand Down
8 changes: 4 additions & 4 deletions Tql.App/QuickStart/QuickStartScript.Steps.cs
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ private void WelcomeInstructions(MainWindow window)
_quickStart.Show(
window,
CreateBuilder("welcome-instructions", hotKey)
.WithButton("OK", () => WelcomeScope(window))
.WithButton("Next", () => WelcomeScope(window))
.Build(),
QuickStartPopupMode.Modal
);
Expand All @@ -138,7 +138,7 @@ private void WelcomeScope(MainWindow window)
_quickStart.Show(
window,
CreateBuilder("welcome-scope", hotKey)
.WithButton("OK", () => WelcomeOpenApp(window))
.WithButton("Next", () => WelcomeOpenApp(window))
.WithBack(() => WelcomeInstructions(window))
.Build(),
QuickStartPopupMode.Modal
Expand All @@ -152,7 +152,7 @@ private void WelcomeOpenApp(MainWindow window)
_quickStart.Show(
window,
CreateBuilder("welcome-open-app", hotKey)
.WithButton("OK", () => SelectTool(window))
.WithButton("Next", () => SelectTool(window))
.WithBack(() => WelcomeScope(window))
.Build(),
QuickStartPopupMode.Modal
Expand Down Expand Up @@ -346,7 +346,7 @@ private void UsingTheApp(MainWindow window)
_quickStart.Show(
window,
CreateBuilder("using-the-app", CurrentPlugin.PluginName)
.WithButton("OK", () => ListAllPlugins(window))
.WithButton("Next", () => ListAllPlugins(window))
.WithBack(() => OpenConfigurationWindowToConfigurePlugin(window))
.Build(),
QuickStartPopupMode.Modal
Expand Down

0 comments on commit 783bbab

Please sign in to comment.