when shrinking the window, "Browse distinct values" and "Primary" are lost (then don't switch to the More dropdown).
Fixed in 582ac4d. However, something is wrong when loading the page when the window is already small (so "More" shows) and then made wider only a bit (so "More" still shows).
Test table is:
-- -- Table structure for table `table1` --
CREATE TABLE IF NOT EXISTS `table1` ( `computer` int(2) NOT NULL AUTO_INCREMENT, `system` int(1) NOT NULL, UNIQUE KEY `test` (`computer`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
-- -- Dumping data for table `table1` --
INSERT INTO `table1` (`computer`, `system`) VALUES (1, 2);
-- mynetx (Jo Michael)