1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-27 15:50:10 +01:00

Bug 803 - Incorrect pointer (cursor) when rearranging tracks

There is no wxCURSOR_REARRANGE so made a custom cursor instead.
This commit is contained in:
James Crook
2019-08-18 14:47:17 +01:00
parent c65eb8fea5
commit 06af0c6296
3 changed files with 43 additions and 2 deletions

View File

@@ -0,0 +1,38 @@
/* XPM */
static const char * const RearrangeCursorXpm[] = {
"32 32 3 1",
" c #FF0000", // mask color = RGB:255,0,0
". c #000000",
"+ c #FFFFFF",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ... ",
" .++... ",
" ...++.++... ",
" .++.++.++.++. ",
" .++.++.++.++. ",
" .++.++.++.++. ",
" ...+++++++++++. ",
" .++.+++++++++++. ",
" .++.+++++++++++. ",
" .++.+++++++++++. ",
" .++++++++++++++. ",
" .++++++++++++++. ",
" .+++++++++++++. ",
" .+++++++++++++. ",
" .+++++++++++. ",
" .++++++++++. ",
" .++++++++. ",
" ..++++.. ",
" .... ",
" ",
" ",
" ",
" ",
" ",
" "};