dozn

Results 16 issues of dozn

### Checklist - [X] I have searched the [issue tracker](https://github.com/fyne-io/fyne/issues) for open issues that relate to the same feature, before opening a new one. - [X] This issue only relates...

### Checklist - [X] I have searched the [issue tracker](https://github.com/fyne-io/fyne/issues) for open issues that relate to the same problem, before opening a new one. - [X] This issue only relates...

unverified

I'd recommend the [BSD 3-Clause](https://choosealicense.com/licenses/bsd-3-clause/) (same as Odin).

## Context ```f# Enum :: enum { a, } main :: proc() { switch Enum { case .a: } } ``` Odin: dev-2024-10:7989d512a OS: Windows 11 Professional (version: 23H2), build...

bug

## Context If you do `odin run . -vet-unused-procedures -vet-packages:main`, you will receive the error: `-vet-unused-procedures must be used with -vet-packages` It works correctly if you swap the flag order....

feature request

```f# package main Foo :: enum { a, } ``` Attempting to rename `a` will give you the prompt, but it won't be changed afterwards.

```f# package main main :: proc() { foo: Foo foo = .a } Foo :: enum { a = 1, } ``` If you select `.a` and rename it, the...

## Context ```go package main main :: proc() { x: U = []int{0} _ = x.([]int) } U :: union { []int } ``` ## Expected Behavior No panic. ##...

stale

## Context ```f# package main S :: struct { data: map[U]int } U :: union { S } ``` I don't believe we allow the struct itself in which a...

bug

I was typing away, and the call was declined as soon as the small pop-up appeared on the bottom-right corner of my Windows machine because I hit the spacebar at...