ui: fixed autocompletion issues
* click in autocompletions list causes search * right arrow for autocompletion * changed query operator has from '>' to '.' and operator sub from '.' to '+' * fixed autocompletions to fit to query and * fixed spectral layouting endless looping on unconnected node
This commit is contained in:
@@ -212,6 +212,13 @@ public:
|
||||
TS_ASSERT(!utility::isPrefix(bar, foo));
|
||||
}
|
||||
|
||||
void test_to_lower_case()
|
||||
{
|
||||
TS_ASSERT_EQUALS("foobar", utility::toLowerCase("FooBar"));
|
||||
TS_ASSERT_EQUALS("foobar", utility::toLowerCase("FOOBAR"));
|
||||
TS_ASSERT_EQUALS("foobar", utility::toLowerCase("foobar"));
|
||||
}
|
||||
|
||||
void test_equals_case_insensitive_with_different_cases()
|
||||
{
|
||||
const std::string foo = "FooBar";
|
||||
|
||||
Reference in New Issue
Block a user