Skip to content

Commit

Permalink
Merge pull request #67 from sarim/develop
Browse files Browse the repository at this point in the history
merge fixes from develop branch
  • Loading branch information
sarim committed Jun 18, 2014
2 parents 804114f + d276a03 commit 92b2ba6
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion avropref.ui
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<!-- interface-requires gtk+ 3.0 -->
<object class="GtkAdjustment" id="lutable_size">
<property name="lower">5</property>
<property name="upper">16</property>
<property name="upper">15</property>
<property name="step_increment">1</property>
<property name="page_increment">10</property>
</object>
Expand Down
2 changes: 1 addition & 1 deletion com.omicronlab.avro.gschema.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<description>Whether enter key should commit newline after applying candidate</description>
</key>
<key type="i" name="lutable-size">
<default>16</default>
<default>15</default>
<summary>lutable-size</summary>
<description>Dictionary suggestion lookup table size</description>
</key>
Expand Down
4 changes: 2 additions & 2 deletions main-gjs.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const Gio = imports.gi.Gio;
const prefwindow = imports.pref;

//check if running from ibus
exec_by_ibus = (ARGV[0] == '--ibus')
var exec_by_ibus = (ARGV[0] == '--ibus')

// Let's initialize ibus
IBus.init();
Expand Down Expand Up @@ -194,7 +194,7 @@ if (bus.is_connected()) {
});

var proplist = new IBus.PropList();
var propp = new IBus.Property.new(
var propp = IBus.Property.new(
'setup',
IBus.PropType.NORMAL,
IBus.Text.new_from_string("Preferences - Avro"),
Expand Down
2 changes: 1 addition & 1 deletion utf8.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
function utf8Decode(str) {
return decodeURIComponent( escape( str ) );
return decodeURIComponent( unescape( str ) );
}

0 comments on commit 92b2ba6

Please sign in to comment.