gesslar
gesslar
I want to help contribute to the web client, and I guess this is the only way to get it running. So I followed the instructions laid out. I have...
#### Brief summary of issue / Description of requested feature: We can, by API, change the background colour in the main window, but we cannot change the colour of the...
#### Brief summary of issue / Description of requested feature: When multiple tabs are open and you are not in the tab in question, and a widget is asked to...
There are lots of real examples of why this would be useful. Presently, I usually create two arrays, one that acts as the "array that holds the information I need...
```c class L { string m ; int n ; float o ; } void runit() { class L l = new(class L) ; int x = 3 ; printf("l:...
In the case of a function definition, when specifying the parameters, it would be nice to be able to default argument values when none are provided. Example: ```C int myFunction(object...
no_clone: The blueprint object can't be cloned. no_inherit: The program can't be inherited. no_shadow: The program can't be shadowed (similar to declaring all functions as 'nomask').
A marriage of `call_out` and `call_other`, this efun would perform a call_out to an external object/file rather than relying on the current object. Currently, need to have an lfun that...
Maybe a better name would describe this, but, here's how I would describe this. An object class that lives only as long as its current scope, much like variables. Would...
_Logical OR assignment ||=_ Should behave like: x || (x = y); _Logical AND assignment &&=_ Should behave like: x && (x = y);