Jan Šimek
Jan Šimek
After adding a `UI::TextArea` into a `UI::TextAreaList` it will not receive input events anymore: ```c++ textArea->mouseClickHandler().add([=](...) { // never called }); textAreaList->addArea(std::move(textArea)); ``` 
To reproduce the crash simply load the `artemple` map and open the inventory. Use [aliasing constructor](https://www.codesynthesis.com/~boris/blog/2012/04/25/shared-ptr-aliasing-constructor/) until we unravel the mix of raw and smart pointers. @adamkewley I do not...
Happens on the Broken Hills map (broken1) when Opcode80D8 is called.
To reproduce set `init_location=blabla` in your config.ini file.

Implement formula for calculating barter prices to match the vanilla engine. **NovaRain** came up with the [following pseudo-code](https://www.nma-fallout.com/threads/fallout-and-fallout-2-barter-formula.217810/#post-4329046) for FO2: ```c++ Master_Trader = 0.0; if (player_has_master_trader) Master_Trader = 25.0; barter_mod...
I followed the Generic installation path and installed latest Kerberos.io from git. When I go to Web -> Systém panel, it says that machinery is not running but according to...
I am on Arch linux with open source radeon drivers (OpenGL 3.0 Mesa 11.2.1). When I run the game I see black window with the following error in the console:...
Inspired by: https://retype.com/components/code-block/#line-highlighting Highlight a specific line or range of lines in a code block component using the line highlighting syntax. After the opening of a code block component, add...
I did what I could to make the editor compile on Windows in this commit: https://github.com/JanSimek/shadowgrounds/commit/dac4bd2308e60bb0948f35e419297d4e75512906 I have never used boost pointers so I have no idea what implications does...