Skip to content

Commit

Permalink
Merge pull request #50 from giard-alexandre/feat/popup-allow-interaction
Browse files Browse the repository at this point in the history
feat(popup): allow interaction when open
  • Loading branch information
giard-alexandre authored Oct 30, 2024
2 parents 96e6f25 + 63e6a02 commit 006a1e4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/qodana_code_quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ jobs:
ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit
fetch-depth: 0 # a full history is required for pull request analysis
- name: 'Qodana Scan'
uses: JetBrains/qodana-action@v2024.1
uses: JetBrains/qodana-action@v2024.2
with:
pr-mode: false
env:
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN_1815166048 }}
QODANA_ENDPOINT: 'https://qodana.cloud'
QODANA_ENDPOINT: 'https://qodana.cloud'
6 changes: 4 additions & 2 deletions qodana.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
version: "1.0"
linter: jetbrains/qodana-cdnet:2024.1
linter: jetbrains/qodana-cdnet:latest
dotnet:
solution: DynamicTreeDataGrid.sln
profile:
name: qodana.recommended
include:
- name: CheckDependencyLicenses
- name: CheckDependencyLicenses
2 changes: 1 addition & 1 deletion src/DynamicTreeDataGrid/DynamicTreeDataGrid.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ public void ShowColumnEditor() {
if (topLevel is not Window window) return;

columnsWindow.RequestedThemeVariant = topLevel.RequestedThemeVariant;
columnsWindow.ShowDialog(window);
columnsWindow.Show(window);
}
}

0 comments on commit 006a1e4

Please sign in to comment.