Skip to content
This repository was archived by the owner on Apr 9, 2025. It is now read-only.

Commit 006a1e4

Browse files
Merge pull request #50 from giard-alexandre/feat/popup-allow-interaction
feat(popup): allow interaction when open
2 parents 96e6f25 + 63e6a02 commit 006a1e4

3 files changed

Lines changed: 7 additions & 5 deletions

File tree

.github/workflows/qodana_code_quality.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ jobs:
2020
ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit
2121
fetch-depth: 0 # a full history is required for pull request analysis
2222
- name: 'Qodana Scan'
23-
uses: JetBrains/qodana-action@v2024.1
23+
uses: JetBrains/qodana-action@v2024.2
2424
with:
2525
pr-mode: false
2626
env:
2727
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN_1815166048 }}
28-
QODANA_ENDPOINT: 'https://qodana.cloud'
28+
QODANA_ENDPOINT: 'https://qodana.cloud'

qodana.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
version: "1.0"
2-
linter: jetbrains/qodana-cdnet:2024.1
2+
linter: jetbrains/qodana-cdnet:latest
3+
dotnet:
4+
solution: DynamicTreeDataGrid.sln
35
profile:
46
name: qodana.recommended
57
include:
6-
- name: CheckDependencyLicenses
8+
- name: CheckDependencyLicenses

src/DynamicTreeDataGrid/DynamicTreeDataGrid.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ public void ShowColumnEditor() {
2626
if (topLevel is not Window window) return;
2727

2828
columnsWindow.RequestedThemeVariant = topLevel.RequestedThemeVariant;
29-
columnsWindow.ShowDialog(window);
29+
columnsWindow.Show(window);
3030
}
3131
}

0 commit comments

Comments
 (0)