Fritz Zaucker
Fritz Zaucker
It seems to me, the problem is adding a MenuButton not to a Menu, but to a Window. Seems a bit like driving a car not into a garage, but...
> OK ok I thought it was the correct way to add a button which show a menu when you click on it, how should I do that ? I...
Works for me on http://www.qooxdoo.org/devel/demobrowser/#table~Table.html and http://www.qooxdoo.org/devel/playground/#Table-ria with Ubuntu and FF 65 Cheers, Fritz On Tue, 5 Feb 2019, mappopo wrote: > In Firefox 65 is no longer possible to...
Make it so!
Just make sure to **not** do what git suggests after the rebase (pull), but do what Tobi said (push -f).
- Can reproduce the behavior described above with Ubuntu 20.04, Chrome 99.0.4844.51 - Problem does not occur on a MacBook Pro, macOS 12.2.1, same Chrome version
 This shows the offset a bit better with the row being deselected.
This shows the problem: ``` use DBIish; my $dbh = DBIish.connect('SQLite', database => './test-hash.sqlite3'); my $sth; $dbh.do('CREATE TABLE IF NOT EXISTS t1(id INTEGER, name TEXT)'); $dbh.do('DELETE FROM t1'); $sth =...
For completeness: ```my @rows; my %rows; $sth.execute; @rows = $sth.allrows; dd @rows; $sth.execute; @rows = $sth.allrows(:array-of-hash); dd @rows; $sth.execute; %rows = $sth.allrows(:hash-of-array); dd %rows; $sth.finish; $dbh.dispose; ``` gives ``` Array...
The files are indeed changed whenever a line "moves" in a source file (due to deletion or insertion of lines). The actual translations are not changed, but the new location...