~veebers/stock-ticker-mobile-app/porting-autopilot-1.4

« back to all changes in this revision

Viewing changes to Add_Stocks_page.qml

  • Committer: Robert Steckroth
  • Date: 2013-07-16 12:36:53 UTC
  • Revision ID: robertsteckroth@gmail.com-20130716123653-d926q81qswe1exaj
More work to management design.

Show diffs side-by-side

added added

removed removed

Lines of Context:
148
148
                                searchbox.open_box = false
149
149
                                if ( active_search_tick === 'steckroth')
150
150
                                    developerPopup.show()
151
 
                                else
152
 
                                    reload_stocks(currentStocksList, addStockTextField.text)
 
151
                                reload_stocks(currentStocksList, addStockTextField.text)
153
152
                            }
154
153
                        }
155
154
                }
175
174
        TextField {
176
175
            id : addStockTextField
177
176
            objectName: "addStockTextField"
178
 
            placeholderText: i18n.tr("Search for Stocks (multiples are space separated)")
 
177
            placeholderText: i18n.tr("Search for Stocks (space separated)")
179
178
            anchors.fill: parent
180
179
            anchors.leftMargin: units.gu(1)
181
180
            anchors.rightMargin: units.gu(1)
263
262
    Dialog {
264
263
        id: developerPopup
265
264
        title: i18n.tr("Stock Ticker")
266
 
        text: i18n.tr("was developed by Robert Steckroth from Bust0ut, Surgemcgee.")
 
265
        text: i18n.tr("from Surgemcgee.")
267
266
        Button {
268
267
            text: i18n.tr("Ok")
269
268
            onClicked: PopupUtils.close(developerPopup)