Egor

Results 26 issues of Egor

I'm facing a really annoying bug: Every time the mouse cursor style changes, the cursor is rendered at an incorrect position, and remains there until I move the mouse. It's...

bug
ui
linux

See picture: (top to bottom: Firefox, XFCE terminal, Mousepad) ![pic](https://user-images.githubusercontent.com/20289055/168425496-1ba865c7-feff-42bc-b205-fe3c7dc739ea.png) In the previous versions of this theme all windows used the second style (thin large icons), but in the later...

OS: Xubuntu 21.10 VSCode version: 1.63.2 CodeLLDB version: v1.6.10 Compiler: Clang 13 (Ubuntu clang version 13.0.0-2) Debuggee: x86_64-pc-linux-gnu (C++) I'm getting this crash while stepping through my code, but it's...

area:Crash

Fixes #711 I went over all classes with custom destructors, and `=delete`d or `=default`ed their copy operations. In cases where that would remove the default constructor, I added it back.

This is a rather minor issue. I accidentally tried to copy an instance of `b2World`, and got a warning from Clang (from `-Wdeprecated`): `b2_world.h:54:2: warning: definition of implicit copy constructor...

Russian translations for dialogues in the 'Farewell' chapter seem to be slightly inaccurate in a few places: * `Russian.txt:4630` - ... `присматривала за мной{n}на горе {+MOUNTAIN}.` Since `MOUNTAIN =`**`Гора`**, it...

Let's say I have this rule: ``` { "begin": "{", "end": "}", } ``` If I apply it to: ```cpp void foo() { // } ``` It folds to: ```cpp...

There are some large binaries in the `Xcode` directory, e.g. https://github.com/libsdl-org/SDL_net/blob/main/Xcode/iOS/SDL2.framework/SDL2 I guess they were added to Git by mistake?

Windows is not case-sensitive, so spelling includes and libraries in the wrong case doesn't do anything. But it's problematic when one tries to cross-compile from Linux. I had to fix...

The LLDB pretty-printer sometimes prints junk values. Consider following example: ```cpp #include #include struct ivec2 { int x = 0, y = 0; friend bool operator==(ivec2 a, ivec2 b) {...